summaryrefslogtreecommitdiffstats
path: root/vendor/serde_repr/tests/ui/not_enum.rs
blob: 92a1d746dc72db38bd89cc551126da07ba3f6759 (plain)
1
2
3
4
5
6
7
8
9
10
11
use serde_repr::Serialize_repr;

#[derive(Serialize_repr)]
struct SmallPrime {
    two: u8,
    three: u8,
    five: u8,
    seven: u8,
}

fn main() {}