mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-22 20:53:37 +00:00
10 lines
117 B
Rust
10 lines
117 B
Rust
enum Issue2446 {
|
|
V {
|
|
f: u8, // x
|
|
},
|
|
}
|
|
|
|
enum Issue2446TrailingCommentsOnly {
|
|
V { f: u8 /* */ },
|
|
}
|