rust/src/test/ui/error-codes/E0404.rs
2018-12-25 21:08:33 -07:00

8 lines
116 B
Rust

struct Foo;
struct Bar;
impl Foo for Bar {} //~ ERROR E0404
fn main() {}
fn baz<T: Foo>(_: T) {} //~ ERROR E0404