2016-11-30 16:35:25 -06:00
|
|
|
error[E0432]: unresolved import `ImportError`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-5035.rs:15:5
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use ImportError; //~ ERROR unresolved import `ImportError` [E0432]
|
2016-11-30 16:35:25 -06:00
|
|
|
| ^^^^^^^^^^^ no `ImportError` in the root
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
error[E0404]: expected trait, found type alias `K`
|
2016-11-30 16:35:25 -06:00
|
|
|
--> $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`
|
2017-04-18 06:28:05 -05:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| 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?
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2018-03-15 10:13:47 -05:00
|
|
|
Some errors occurred: E0404, E0432.
|
|
|
|
For more information about an error, try `rustc --explain E0404`.
|