7 lines
153 B
Rust
7 lines
153 B
Rust
|
|
enum TestEnum {
|
||
|
|
Works,
|
||
|
|
/// Some documentation
|
||
|
|
Self, //~ ERROR expected identifier, found keyword `Self`
|
||
|
|
//~^ HELP enum variants can be
|
||
|
|
}
|