blob: 972e5bdddc6733493e530b2b1015c11bbac8336b [file] [log] [blame]
error[E0432]: unresolved import `self::Self`
--> $DIR/self_type_keyword-2.rs:11:5
|
LL | use self::Self as Foo; //~ ERROR unresolved import `self::Self`
| ^^^^^^^^^^^^^^^^^ no `Self` in the root
error[E0531]: cannot find unit struct/variant or constant `Self` in this scope
--> $DIR/self_type_keyword-2.rs:14:9
|
LL | let Self = 5;
| ^^^^ not found in this scope
error[E0531]: cannot find unit struct/variant or constant `Self` in this scope
--> $DIR/self_type_keyword-2.rs:18:9
|
LL | Self => (),
| ^^^^ not found in this scope
error[E0531]: cannot find unit struct/variant or constant `Self` in this scope
--> $DIR/self_type_keyword-2.rs:20:18
|
LL | Foo { x: Self } => (),
| ^^^^ not found in this scope
error: aborting due to 4 previous errors
Some errors occurred: E0432, E0531.
For more information about an error, try `rustc --explain E0432`.