summary refs log tree commit diff
path: root/src/test/ui/issues/issue-30560.stderr
blob: 880c565cf9f6900607d40b8af5cc2e3d9fefedea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: items in traits are not importable.
  --> $DIR/issue-30560.rs:20:5
   |
LL | use T::*; //~ ERROR items in traits are not importable
   |     ^^^^

error[E0432]: unresolved import `Alias`
  --> $DIR/issue-30560.rs:12:5
   |
LL | use Alias::*;
   |     ^^^^^ not a module `Alias`

error[E0432]: unresolved import `std::io::Result`
  --> $DIR/issue-30560.rs:15: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`.