summaryrefslogtreecommitdiffstats
path: root/tests/ui/self/self_type_keyword-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/self/self_type_keyword-2.rs')
-rw-r--r--tests/ui/self/self_type_keyword-2.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/self/self_type_keyword-2.rs b/tests/ui/self/self_type_keyword-2.rs
new file mode 100644
index 000000000..cfb87f518
--- /dev/null
+++ b/tests/ui/self/self_type_keyword-2.rs
@@ -0,0 +1,13 @@
+use self::Self as Foo; //~ ERROR unresolved import `self::Self`
+
+pub fn main() {
+ let Self = 5;
+ //~^ ERROR cannot find unit struct, unit variant or constant `Self` in this scope
+
+ match 15 {
+ Self => (),
+ //~^ ERROR cannot find unit struct, unit variant or constant `Self` in this scope
+ Foo { x: Self } => (),
+ //~^ ERROR cannot find unit struct, unit variant or constant `Self` in this scope
+ }
+}