summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-self-type.stderr
blob: e615394115119d16928267421e27b29b62c64993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0433]: failed to resolve: `Self` is only available in impls, traits, and type definitions
  --> $DIR/use-self-type.rs:7:16
   |
LL |         pub(in Self::f) struct Z;
   |                ^^^^ `Self` is only available in impls, traits, and type definitions

error[E0432]: unresolved import `Self`
  --> $DIR/use-self-type.rs:6:13
   |
LL |         use Self::f;
   |             ^^^^ `Self` is only available in impls, traits, and type definitions

error: aborting due to 2 previous errors

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