2016-11-30 16:35:25 -06:00
|
|
|
error[E0432]: unresolved import `ImportError`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-5035.rs:5:5
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use ImportError;
|
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`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-5035.rs:3:6
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2019-10-14 19:20:50 -05:00
|
|
|
LL | trait I {}
|
2020-03-21 09:03:58 -05:00
|
|
|
| ------- similarly named trait `I` defined here
|
2019-10-14 19:20:50 -05:00
|
|
|
LL | type K = dyn I;
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | impl K for isize {}
|
2021-03-31 18:37:29 -05:00
|
|
|
| ^ type aliases cannot be used as traits
|
2018-10-21 19:58:34 -05:00
|
|
|
|
|
2020-04-22 13:58:21 -05:00
|
|
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
|
|
|
|
|
2021-03-31 18:37:29 -05:00
|
|
|
LL | trait K = dyn I;
|
|
|
|
|
|
|
|
|
help: a trait with a similar name exists
|
|
|
|
|
|
|
|
|
LL | impl I for isize {}
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~
|
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
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0404, E0432.
|
2018-03-15 10:13:47 -05:00
|
|
|
For more information about an error, try `rustc --explain E0404`.
|