blob: f60f1dfcf3772e0979c224d3a9e5e40fc2416472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0404]: expected trait, found type alias `Bar`
--> $DIR/two_files.rs:15:6
|
LL | impl Bar for Baz { } //~ ERROR expected trait, found type alias
| ^^^ type aliases cannot be used as traits
|
= note: did you mean to use a trait alias?
error: aborting due to previous error
For more information about this error, try `rustc --explain E0404`.
|