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
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
15 | 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
|
|
|
|
|
|
|
|
|
13 | impl K for isize {} //~ ERROR expected trait, found type alias `K`
|
2017-04-18 06:28:05 -05:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| did you mean `I`?
|
2017-07-05 11:58:22 -05:00
|
|
|
| type aliases cannot be used for traits
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
|
|
error: cannot continue compilation due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
You've got a few errors: E0404, E0432
|
|
|
|
If you want more information on an error, try using "rustc --explain E0404"
|