]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0404.stderr
Merge commit 'cb7915b00c235e9b5861564f3be78dba330980ee' into clippyup
[rust.git] / src / test / ui / error-codes / E0404.stderr
1 error[E0404]: expected trait, found struct `Foo`
2   --> $DIR/E0404.rs:4:6
3    |
4 LL | impl Foo for Bar {}
5    |      ^^^ not a trait
6
7 error[E0404]: expected trait, found struct `Foo`
8   --> $DIR/E0404.rs:8:11
9    |
10 LL | fn baz<T: Foo>(_: T) {}
11    |           ^^^ not a trait
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0404`.