2016-11-30 22:35:25 +00:00
|
|
|
error[E0432]: unresolved import `ImportError`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-5035.rs:5:5
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | use ImportError;
|
2016-11-30 22:35:25 +00:00
|
|
|
| ^^^^^^^^^^^ no `ImportError` in the root
|
|
|
|
|
2016-11-30 22:35:25 +00:00
|
|
|
error[E0404]: expected trait, found type alias `K`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-5035.rs:3:6
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | impl K for isize {}
|
2017-04-18 11:28:05 +00:00
|
|
|
| ^
|
|
|
|
| |
|
2018-10-22 00:58:34 +00:00
|
|
|
| type aliases cannot be used as traits
|
2019-01-09 19:11:00 +00:00
|
|
|
| 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?
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-03-15 15:13:47 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-03-15 15:13:47 +00:00
|
|
|
Some errors occurred: E0404, E0432.
|
|
|
|
For more information about an error, try `rustc --explain E0404`.
|