]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-self-type.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / use / use-self-type.stderr
1 error[E0433]: failed to resolve: use of undeclared type `Self`
2   --> $DIR/use-self-type.rs:7:16
3    |
4 LL |         pub(in Self::f) struct Z;
5    |                ^^^^ use of undeclared type `Self`
6
7 error[E0432]: unresolved import `Self`
8   --> $DIR/use-self-type.rs:6:13
9    |
10 LL |         use Self::f;
11    |             ^^^^ use of undeclared type `Self`
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0432, E0433.
16 For more information about an error, try `rustc --explain E0432`.