mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 13:00:49 +00:00
10 lines
118 B
Rust
10 lines
118 B
Rust
use serde_derive::Serialize;
|
|
|
|
#[derive(Serialize)]
|
|
struct S {
|
|
#[serde(bound(unknown))]
|
|
x: (),
|
|
}
|
|
|
|
fn main() {}
|