summaryrefslogtreecommitdiffstats
path: root/vendor/darling-0.14.4/tests/enums_unit.rs
blob: 34e01356579121ae73b889e593ffce42599b8299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test expansion of enum variants which have no associated data.

use darling::FromMeta;

#[derive(Debug, FromMeta)]
#[darling(rename_all = "snake_case")]
enum Pattern {
    Owned,
    Immutable,
    Mutable,
}

#[test]
fn expansion() {}