]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0404.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[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`.