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