11 lines
241 B
Rust
11 lines
241 B
Rust
|
#[macro_use]
|
||
|
extern crate serde_derive;
|
||
|
|
||
|
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
|
||
|
#[serde(tag = "type")] //~^ HELP: #[serde(tag = "...")] cannot be used with tuple variants
|
||
|
enum E {
|
||
|
Tuple(u8, u8),
|
||
|
}
|
||
|
|
||
|
fn main() {}
|