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