mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-01 23:11:18 +00:00
13 lines
239 B
Rust
13 lines
239 B
Rust
#![feature(rustc_macro)]
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
|
|
enum E {
|
|
#[serde(abc="xyz")] //~^^ HELP: unknown serde variant attribute `abc`
|
|
V,
|
|
}
|
|
|
|
fn main() { }
|