14a3da9b16
With this commit I believe I've covered all `compile_error!`-based errors.
9 lines
128 B
Rust
9 lines
128 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Deserialize)]
|
|
#[serde(default = "default_t")]
|
|
struct T(u8, u8);
|
|
|
|
fn main() {}
|