mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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() {
|
|
}
|