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

22 lines
605 B
Text
Raw Normal View History

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