summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/glob_import.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-json/glob_import.rs')
-rw-r--r--src/test/rustdoc-json/glob_import.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/rustdoc-json/glob_import.rs b/src/test/rustdoc-json/glob_import.rs
deleted file mode 100644
index 00051b121..000000000
--- a/src/test/rustdoc-json/glob_import.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// This is a regression test for <https://github.com/rust-lang/rust/issues/98003>.
-
-#![feature(no_core)]
-#![no_std]
-#![no_core]
-
-// @has "$.index[*][?(@.name=='glob')]"
-// @has "$.index[*][?(@.kind=='import')].inner.name" \"*\"
-
-
-mod m1 {
- pub fn f() {}
-}
-mod m2 {
- pub fn f(_: u8) {}
-}
-
-pub use m1::*;
-pub use m2::*;
-
-pub mod glob {
- pub use *;
-}