11 lines
212 B
Rust
11 lines
212 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)] //~ ERROR: proc-macro derive panicked
|
|
struct C {
|
|
#[serde(abc="xyz")] //~^^ HELP: unknown serde field attribute `abc`
|
|
x: u32,
|
|
}
|
|
|
|
fn main() { }
|