mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
182 B
Rust
10 lines
182 B
Rust
#![crate_name = "foo"]
|
|
|
|
mod private {
|
|
pub enum Enum{Variant}
|
|
}
|
|
pub use self::private::Enum::*;
|
|
|
|
// @!has-dir foo/private
|
|
// @!has foo/index.html '//a/@href' 'private/index.html'
|