blob: 89492261cbaff3eb493f3a3bfd7ed80e16b6133c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0432]: unresolved import `Alias`
--> $DIR/issue-30560.rs:2:5
|
LL | use Alias::*;
| ^^^^^ `Alias` is a type alias, not a module
error[E0432]: unresolved import `std::io::Result`
--> $DIR/issue-30560.rs:4:14
|
LL | use std::io::Result::*;
| ^^^^^^ `Result` is a type alias, not a module
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0432`.
|