mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 16:28:02 +00:00
14 lines
323 B
Plaintext
14 lines
323 B
Plaintext
#![feature(custom_attribute, custom_derive, plugin)]
|
|
#![plugin(serde_macros)]
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct S {
|
|
#[serde(rename(serialize="x"))]
|
|
#[serde(rename(serialize="y"))] //~ ERROR buldternua
|
|
#[serde(rename(deserialize="y"))] // ok
|
|
#[serde(rename="y")] // error
|
|
z: i32,
|
|
}
|
|
|
|
fn main() {}
|