about summary refs log tree commit diff
path: root/src/test/ui/resolve/bad-expr-path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/bad-expr-path.rs')
-rw-r--r--src/test/ui/resolve/bad-expr-path.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/resolve/bad-expr-path.rs b/src/test/ui/resolve/bad-expr-path.rs
deleted file mode 100644
index 31fc9cf2cb5..00000000000
--- a/src/test/ui/resolve/bad-expr-path.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-mod m1 {}
-
-fn main(arguments: Vec<String>) { //~ ERROR `main` function has wrong type
-    log(debug, m1::arguments);
-    //~^ ERROR cannot find function `log` in this scope
-    //~| ERROR cannot find value `debug` in this scope
-    //~| ERROR cannot find value `arguments` in module `m1`
-}