rust/tests/ui/resolve/issue-5035.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
772 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `ImportError`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-5035.rs:5:5
|
2019-03-09 20:03:44 +08:00
LL | use ImportError;
| ^^^^^^^^^^^ no `ImportError` in the root
error[E0404]: expected trait, found type alias `K`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-5035.rs:3:6
|
LL | trait I {}
2020-03-21 22:03:58 +08:00
| ------- similarly named trait `I` defined here
LL | type K = dyn I;
2019-03-09 20:03:44 +08:00
LL | impl K for isize {}
| ^ type aliases cannot be used as traits
2018-10-22 08:58:34 +08:00
|
help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
|
LL | trait K = dyn I;
|
help: a trait with a similar name exists
|
LL | impl I for isize {}
| ~
2018-03-15 23:13:47 +08:00
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0404, E0432.
2018-03-15 23:13:47 +08:00
For more information about an error, try `rustc --explain E0404`.