Files
serde/serde_derive/tests/compile-fail/duplicate-attribute/two-rename-ser.rs
T
2016-10-08 18:29:36 -04:00

14 lines
289 B
Rust

#![feature(proc_macro)]
#[macro_use]
extern crate serde_derive;
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
struct S {
#[serde(rename(serialize="x"))]
#[serde(rename(serialize="y"))] //~^^^ HELP: duplicate serde attribute `rename`
x: (),
}
fn main() {}