mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
18 lines
392 B
Rust
18 lines
392 B
Rust
// aux-build:variant-struct.rs
|
|
// build-aux-docs
|
|
// ignore-cross-compile
|
|
|
|
#![crate_name="issue_32395"]
|
|
|
|
// @has variant_struct/enum.Foo.html
|
|
// @!hasraw - 'pub qux'
|
|
// @!hasraw - 'pub(crate) qux'
|
|
// @!hasraw - 'pub Bar'
|
|
extern crate variant_struct;
|
|
|
|
// @has issue_32395/enum.Foo.html
|
|
// @!hasraw - 'pub qux'
|
|
// @!hasraw - 'pub(crate) qux'
|
|
// @!hasraw - 'pub Bar'
|
|
pub use variant_struct::Foo;
|