summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs')
-rw-r--r--src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs b/src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs
new file mode 100644
index 000000000..f076feb71
--- /dev/null
+++ b/src/test/rustdoc-json/reexport/export_extern_crate_as_self.rs
@@ -0,0 +1,11 @@
+//! Regression test for <https://github.com/rust-lang/rust/issues/100531>
+
+#![feature(no_core)]
+#![no_core]
+
+#![crate_name = "export_extern_crate_as_self"]
+
+// ignore-tidy-linelength
+
+// @is "$.index[*][?(@.kind=='module')].name" \"export_extern_crate_as_self\"
+pub extern crate self as export_extern_crate_as_self; // Must be the same name as the crate already has