Add tests of #[serde(default)] attribute for units and unions

This commit is contained in:
Mingun
2023-08-07 14:42:54 +05:00
parent 28a092261b
commit 21c7fd1bd5
8 changed files with 72 additions and 0 deletions
@@ -0,0 +1,9 @@
use serde_derive::Deserialize;
#[derive(Deserialize)]
#[serde(default)]
union Union {
f: u8,
}
fn main() {}