mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
10 lines
180 B
Rust
10 lines
180 B
Rust
![]() |
// compile-flags: --crate-type=lib
|
||
|
|
||
|
#[derive(Default)] //~ ERROR multiple declared defaults
|
||
|
enum E {
|
||
|
#[default]
|
||
|
A,
|
||
|
#[default]
|
||
|
A, //~ ERROR defined multiple times
|
||
|
}
|