rust/tests/ui/error-codes/E0276.rs

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() {
}