]> git.lizzy.rs Git - rust.git/blobdiff - tests/rustdoc/inline_cross/cross-glob.rs
Rollup merge of #101569 - m-ou-se:alloc-no-rexport-argumentv1, r=thomcc
[rust.git] / tests / rustdoc / inline_cross / cross-glob.rs
index f97da11a9014905d7168341b6e7ddf16c9b0e6d6..7a519d2d2554792362e233f75cab42eae31c13b5 100644 (file)
@@ -6,6 +6,11 @@
 
 // @has cross_glob/struct.SomeStruct.html
 // @has cross_glob/fn.some_fn.html
+// @!has cross_glob/enum.Shadowed.html
 // @!has cross_glob/index.html '//code' 'pub use inner::*;'
 #[doc(inline)]
 pub use inner::*;
+
+// This type shadows the glob-imported enum `Shadowed`.
+// @has cross_glob/type.Shadowed.html
+pub type Shadowed = u8;