about summary refs log tree commit diff
path: root/src/test/ui/modules/issue-56411.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/modules/issue-56411.rs')
-rw-r--r--src/test/ui/modules/issue-56411.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/modules/issue-56411.rs b/src/test/ui/modules/issue-56411.rs
deleted file mode 100644
index 0a20f5fe985..00000000000
--- a/src/test/ui/modules/issue-56411.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-macro_rules! import {
-    ( $(($path:expr, $name:ident)),* ) => {
-        $(
-            #[path = $path]
-            mod $name;
-            pub use self::$name;
-            //~^ ERROR the name `issue_56411_aux` is defined multiple times
-            //~| ERROR `issue_56411_aux` is only public within the crate, and cannot be re-exported outside
-
-        )*
-    }
-}
-
-import!(("issue-56411-aux.rs", issue_56411_aux));
-
-fn main() {
-    println!("Hello, world!");
-}