rust/tests/ui/parser/doc-before-bad-variant.rs

7 lines
153 B
Rust

enum TestEnum {
Works,
/// Some documentation
Self, //~ ERROR expected identifier, found keyword `Self`
//~^ HELP enum variants can be
}