serde/serde_derive/tests/compile-fail/duplicate-attribute/rename-ser-ser.rs
2016-09-28 11:59:25 -07:00

13 lines
266 B
Rust

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