11 lines
238 B
Rust
Raw Normal View History

2016-09-28 09:55:54 -07:00
#[macro_use]
extern crate serde_derive;
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
struct S {
2016-09-28 12:46:54 -07:00
#[serde(rename="x", serialize="y")] //~^^ HELP: unknown serde field attribute `serialize`
2016-09-28 09:55:54 -07:00
x: (),
}
fn main() {}