summaryrefslogtreecommitdiffstats
path: root/tests/ui/use/use-self-type.stderr
blob: 498df34fe325e995509c14ac33d59235b91bf55d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0433]: failed to resolve: `Self` cannot be used in imports
  --> $DIR/use-self-type.rs:7:16
   |
LL |         pub(in Self::f) struct Z;
   |                ^^^^ `Self` cannot be used in imports

error[E0432]: unresolved import `Self`
  --> $DIR/use-self-type.rs:6:13
   |
LL |         use Self::f;
   |             ^^^^ `Self` cannot be used in imports

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0432, E0433.
For more information about an error, try `rustc --explain E0432`.