mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 11:37:39 +00:00
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
|
||
|
}
|