``` enum a { B = 0, /** hello */ C, /** world */ D /** ! */ } fn main() { } ``` ``` $ rustc enum.rs enum.rs:4:5: 4:13 error: expected `}`, found `/** ! */` enum.rs:4 D /** ! */ ^~~~~~~~ ``` Not a big issue, but still a bit annoying. If I remove the last code blocks, it compiles fine.