about summary refs log tree commit diff
path: root/tests/ui/use/use-super-global-path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/use/use-super-global-path.rs')
-rw-r--r--tests/ui/use/use-super-global-path.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/use/use-super-global-path.rs b/tests/ui/use/use-super-global-path.rs
new file mode 100644
index 00000000000..64bfd14b7e7
--- /dev/null
+++ b/tests/ui/use/use-super-global-path.rs
@@ -0,0 +1,16 @@
+#![allow(unused)]
+
+struct S;
+struct Z;
+
+mod foo {
+    use ::super::{S, Z}; //~ ERROR global paths cannot start with `super`
+                         //~| ERROR global paths cannot start with `super`
+
+    pub fn g() {
+        use ::super::main; //~ ERROR global paths cannot start with `super`
+        main();
+    }
+}
+
+fn main() { foo::g(); }