summaryrefslogtreecommitdiff
path: root/tests/headers/issue-1198-alias-rust-const-mod-bitfield-enum.h
blob: ecdf8c3f24fe0d0229dcbed5c16fe770302a371d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// bindgen-flags: --rustified-enum '.*' --constified-enum-module '.*' --bitfield-enum '.*'

typedef enum MyDupeEnum {
	A = 0,
	A_alias = 0,
	B,
} MyDupeEnum;

enum MyOtherDupeEnum {
	C = 0,
	C_alias = 0,
	D,
};