Sign in
rust
/
rust
/
e790320ac4e55ff1ec4c2bb5faeb52eff5d96a32
/
.
/
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
()
{}