summaryrefslogtreecommitdiffstats
path: root/src/test/ui/directory_ownership/macro-expanded-mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/directory_ownership/macro-expanded-mod.rs')
-rw-r--r--src/test/ui/directory_ownership/macro-expanded-mod.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/directory_ownership/macro-expanded-mod.rs b/src/test/ui/directory_ownership/macro-expanded-mod.rs
deleted file mode 100644
index fa81769e5..000000000
--- a/src/test/ui/directory_ownership/macro-expanded-mod.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that macro-expanded non-inline modules behave correctly
-
-macro_rules! mod_decl {
- ($i:ident) => {
- mod $i; //~ ERROR cannot declare a non-inline module inside a block
- };
-}
-
-mod macro_expanded_mod_helper {
- mod_decl!(foo); // This should search in the folder `macro_expanded_mod_helper`
-}
-
-fn main() {
- mod_decl!(foo);
-}