1 use serde_derive::Serialize;
2 
3 #[derive(Serialize)]
4 #[serde(abc = "xyz")]
5 struct A {
6     x: u32,
7 }
8 
mainnull9 fn main() {}
10