summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/mod_file_with_path_attr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/mod_file_with_path_attr.rs')
-rw-r--r--src/test/ui/parser/mod_file_with_path_attr.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/parser/mod_file_with_path_attr.rs b/src/test/ui/parser/mod_file_with_path_attr.rs
deleted file mode 100644
index 9450d89e5..000000000
--- a/src/test/ui/parser/mod_file_with_path_attr.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-// normalize-stderr-test: "not_a_real_file.rs:.*\(" -> "not_a_real_file.rs: $$FILE_NOT_FOUND_MSG ("
-
-#[path = "not_a_real_file.rs"]
-mod m; //~ ERROR not_a_real_file.rs
-
-fn main() {
- assert_eq!(m::foo(), 10);
-}