]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-32395.rs
Auto merge of #99963 - cjgillot:iter-submodule, r=compiler-errors
[rust.git] / src / test / rustdoc / issue-32395.rs
1 // aux-build:variant-struct.rs
2 // build-aux-docs
3 // ignore-cross-compile
4
5 // @has variant_struct/enum.Foo.html
6 // @!hasraw - 'pub qux'
7 // @!hasraw - 'pub(crate) qux'
8 // @!hasraw - 'pub Bar'
9 extern crate variant_struct;
10
11 // @has issue_32395/enum.Foo.html
12 // @!hasraw - 'pub qux'
13 // @!hasraw - 'pub(crate) qux'
14 // @!hasraw - 'pub Bar'
15 pub use variant_struct::Foo;