blob: e247e86fbcb2281ecf67e9aa5bad6b73617a321e (
plain)
1
2
3
4
5
6
7
8
9
|
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 for traits
error: aborting due to previous error
For more information about this error, try `rustc --explain E0404`.
|