mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 12:13:43 +00:00
12 lines
129 B
Rust
12 lines
129 B
Rust
enum Issue2446 {
|
|
V {
|
|
f: u8, // x
|
|
},
|
|
}
|
|
|
|
enum Issue2446TrailingCommentsOnly {
|
|
V {
|
|
f: u8, /* */
|
|
}
|
|
}
|