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