2016-03-22 05:59:43 +00:00
|
|
|
// aux-build:variant-struct.rs
|
|
|
|
// build-aux-docs
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
2023-10-16 22:41:04 +00:00
|
|
|
#![crate_name="issue_32395"]
|
|
|
|
|
2016-03-22 05:59:43 +00:00
|
|
|
// @has variant_struct/enum.Foo.html
|
2022-08-12 04:44:07 +00:00
|
|
|
// @!hasraw - 'pub qux'
|
|
|
|
// @!hasraw - 'pub(crate) qux'
|
|
|
|
// @!hasraw - 'pub Bar'
|
2016-03-22 05:59:43 +00:00
|
|
|
extern crate variant_struct;
|
|
|
|
|
|
|
|
// @has issue_32395/enum.Foo.html
|
2022-08-12 04:44:07 +00:00
|
|
|
// @!hasraw - 'pub qux'
|
|
|
|
// @!hasraw - 'pub(crate) qux'
|
|
|
|
// @!hasraw - 'pub Bar'
|
2016-03-22 05:59:43 +00:00
|
|
|
pub use variant_struct::Foo;
|