mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
19 lines
442 B
Rust
19 lines
442 B
Rust
// aux-build:variant-struct.rs
|
|
// build-aux-docs
|
|
// ignore-cross-compile
|
|
|
|
// https://github.com/rust-lang/rust/issues/32395
|
|
#![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;
|