summaryrefslogtreecommitdiff
path: root/tests/headers/enum_dupe.h
blob: b8d9689aa829ef328b67dd169ca19f82d4309075 (plain)
1
2
3
4
5
6
// bindgen-flags: --rustified-enum ".*"

enum Foo {
    Bar = 1,
    Dupe = 1
};