rust/src/test/ui/resolve/issue-5035.stderr

22 lines
658 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `ImportError`
--> $DIR/issue-5035.rs:15:5
|
2018-02-22 18:42:32 -06:00
LL | use ImportError; //~ ERROR unresolved import `ImportError` [E0432]
| ^^^^^^^^^^^ no `ImportError` in the root
error[E0404]: expected trait, found type alias `K`
--> $DIR/issue-5035.rs:13:6
|
2018-02-22 18:42:32 -06:00
LL | impl K for isize {} //~ ERROR expected trait, found type alias `K`
| ^
| |
| did you mean `I`?
2018-10-21 19:58:34 -05:00
| type aliases cannot be used as traits
|
= note: did you mean to use a trait alias?
2018-03-15 10:13:47 -05:00
error: aborting due to 2 previous errors
2018-03-15 10:13:47 -05:00
Some errors occurred: E0404, E0432.
For more information about an error, try `rustc --explain E0404`.