]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-32395.rs
Update snap from `1.0.1` to `1.1.0`
[rust.git] / tests / 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;