Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
enum
/
suggest-default-attribute.rs
blob: 1d7567e60a57c0a2629875de6c5d8f8e87fad820 [
file
]
pub
enum
Test
{
//~ HELP consider adding a derive
#[
default
]
//~^ ERROR cannot find attribute `default` in this scope
First
,
Second
,
}
fn
main
()
{}