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