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