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

22 lines
587 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `ImportError`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-5035.rs:5:5
|
2019-03-09 12:03:44 +00:00
LL | use ImportError;
| ^^^^^^^^^^^ no `ImportError` in the root
error[E0404]: expected trait, found type alias `K`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-5035.rs:3:6
|
2019-03-09 12:03:44 +00:00
LL | impl K for isize {}
| ^
| |
2018-10-22 00:58:34 +00:00
| type aliases cannot be used as traits
| help: a trait with a similar name exists: `I`
2018-10-22 00:58:34 +00:00
|
= note: did you mean to use a trait alias?
2018-03-15 15:13:47 +00:00
error: aborting due to 2 previous errors
2018-03-15 15:13:47 +00:00
Some errors occurred: E0404, E0432.
For more information about an error, try `rustc --explain E0404`.