mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 02:28:00 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)] //~ ERROR: proc-macro derive panicked
|
|
struct S {
|
|
#[serde(rename="x", serialize="y")] //~^^ HELP: unknown serde field attribute `serialize`
|
|
x: (),
|
|
}
|
|
|
|
fn main() {}
|