mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 21:35:53 +00:00
8 lines
183 B
Rust
8 lines
183 B
Rust
// https://github.com/rust-lang/rust/issues/46766
|
|
#![crate_name = "foo"]
|
|
|
|
pub enum Enum{Variant}
|
|
pub use self::Enum::Variant;
|
|
|
|
// @!has foo/index.html '//a/@href' './Enum/index.html'
|