summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pub/pub-reexport-priv-extern-crate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pub/pub-reexport-priv-extern-crate.rs')
-rw-r--r--src/test/ui/pub/pub-reexport-priv-extern-crate.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/pub/pub-reexport-priv-extern-crate.rs b/src/test/ui/pub/pub-reexport-priv-extern-crate.rs
new file mode 100644
index 000000000..dd5cd420f
--- /dev/null
+++ b/src/test/ui/pub/pub-reexport-priv-extern-crate.rs
@@ -0,0 +1,20 @@
+extern crate core;
+pub use core as reexported_core; //~ ERROR `core` is private, and cannot be re-exported
+ //~^ WARN this was previously accepted
+
+mod foo1 {
+ extern crate core;
+}
+
+mod foo2 {
+ use foo1::core; //~ ERROR crate import `core` is private
+ pub mod bar {
+ extern crate core;
+ }
+}
+
+mod baz {
+ pub use foo2::bar::core; //~ ERROR crate import `core` is private
+}
+
+fn main() {}