mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-28 05:21:05 +00:00
11 lines
129 B
Rust
11 lines
129 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)]
|
|
struct S {
|
|
#[serde(bound(unknown))]
|
|
x: (),
|
|
}
|
|
|
|
fn main() {}
|