mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 13:00:49 +00:00
13 lines
275 B
Rust
13 lines
275 B
Rust
#![feature(proc_macro)]
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)] //~ ERROR: custom derive attribute panicked
|
|
struct S {
|
|
#[serde(rename(serialize="x"), rename(serialize="y"))] //~^^ HELP: duplicate serde attribute `rename`
|
|
x: (),
|
|
}
|
|
|
|
fn main() {}
|