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