]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/no-extern-crate-in-glob-import.rs
Fix regression from #31461 and fix the test that was supposed to catch it.
[rust.git] / src / test / compile-fail / no-extern-crate-in-glob-import.rs
index 5d3efd85134ad6e5e899a91816ea751cff84e62f..75882c5e9812911d0338cc1e2c7f5d3feaecb027 100644 (file)
@@ -14,7 +14,7 @@
 extern crate core;
 
 mod T {
-    use super::*;
+    pub use super::*;
 }
 
 fn main() {