11 lines
120 B
Rust
Raw Normal View History

2016-09-28 09:55:54 -07:00
#[macro_use]
extern crate serde_derive;
#[derive(Serialize)]
2016-09-28 09:55:54 -07:00
enum E {
#[serde(abc = "xyz")]
2016-09-28 09:55:54 -07:00
V,
}
fn main() {}