mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
10 lines
117 B
Rust
10 lines
117 B
Rust
enum Issue2446 {
|
|
V {
|
|
f: u8, // x
|
|
},
|
|
}
|
|
|
|
enum Issue2446TrailingCommentsOnly {
|
|
V { f: u8 /* */ },
|
|
}
|