]> git.proxmox.com Git - rustc.git/blob - src/test/ui/use/use-self-type.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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`.