2016-09-28 09:55:54 -07:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
2017-02-08 08:12:32 -08:00
|
|
|
#[derive(Serialize)] //~ ERROR: proc-macro derive panicked
|
2016-09-28 09:55:54 -07:00
|
|
|
enum E {
|
2016-09-28 12:46:54 -07:00
|
|
|
#[serde(abc="xyz")] //~^^ HELP: unknown serde variant attribute `abc`
|
2016-09-28 09:55:54 -07:00
|
|
|
V,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|