22 lines
558 B
Plaintext
22 lines
558 B
Plaintext
error: items in traits are not importable.
|
|
--> $DIR/issue-30560.rs:10:5
|
|
|
|
|
LL | use T::*; //~ ERROR items in traits are not importable
|
|
| ^^^^
|
|
|
|
error[E0432]: unresolved import `Alias`
|
|
--> $DIR/issue-30560.rs:2:5
|
|
|
|
|
LL | use Alias::*;
|
|
| ^^^^^ not a module `Alias`
|
|
|
|
error[E0432]: unresolved import `std::io::Result`
|
|
--> $DIR/issue-30560.rs:5:14
|
|
|
|
|
LL | use std::io::Result::*;
|
|
| ^^^^^^ not a module `Result`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|