2023-11-20 12:50:25 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/46767
|
2017-12-28 11:49:36 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
mod private {
|
|
|
|
pub enum Enum{Variant}
|
|
|
|
}
|
|
|
|
pub use self::private::Enum::*;
|
|
|
|
|
2018-10-10 14:18:08 -05:00
|
|
|
// @!has-dir foo/private
|
|
|
|
// @!has foo/index.html '//a/@href' 'private/index.html'
|