14a3da9b16
With this commit I believe I've covered all `compile_error!`-based errors.
12 lines
130 B
Rust
12 lines
130 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)]
|
|
#[serde(variant_identifier)]
|
|
enum F {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
fn main() {}
|