We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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.