about summary refs log tree commit diff
path: root/tests/ui/super.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/super.rs')
-rw-r--r--tests/ui/super.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/ui/super.rs b/tests/ui/super.rs
deleted file mode 100644
index 69aff4f98e0..00000000000
--- a/tests/ui/super.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-//@ run-pass
-
-#![allow(dead_code)]
-
-pub mod a {
-    pub fn f() {}
-    pub mod b {
-        fn g() {
-            super::f();
-        }
-    }
-}
-
-pub fn main() {
-}