summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-super-global-path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/use/use-super-global-path.rs')
-rw-r--r--src/test/ui/use/use-super-global-path.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/use/use-super-global-path.rs b/src/test/ui/use/use-super-global-path.rs
new file mode 100644
index 000000000..64bfd14b7
--- /dev/null
+++ b/src/test/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(); }