mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
11 lines
126 B
Rust
11 lines
126 B
Rust
trait Foo {
|
|
fn foo<T>(x: T);
|
|
}
|
|
|
|
impl Foo for bool {
|
|
fn foo<T>(x: T) where T: Copy {} //~ ERROR E0276
|
|
}
|
|
|
|
fn main() {
|
|
}
|