mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-06 03:12:37 +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'
|