2018-07-15 14:11:54 -07:00
|
|
|
error: items in traits are not importable.
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-30560.rs:10:5
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | use T::*; //~ ERROR items in traits are not importable
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `Alias`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-30560.rs:2:5
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | use Alias::*;
|
2018-11-14 02:52:26 +03:00
|
|
|
| ^^^^^ not a module `Alias`
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `std::io::Result`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-30560.rs:5:14
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | use std::io::Result::*;
|
2018-11-14 02:52:26 +03:00
|
|
|
| ^^^^^^ not a module `Result`
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|