mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 04:50:36 +00:00
12 lines
203 B
Rust
12 lines
203 B
Rust
use serde_derive::Deserialize;
|
|
|
|
macro_rules! bug {
|
|
($serde_path:literal) => {
|
|
#[derive(Deserialize)]
|
|
#[serde(crate = $serde_path)]
|
|
pub struct Struct;
|
|
};
|
|
}
|
|
|
|
bug!("serde");
|