xref: /minix3/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/exprs2.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // Matching
2*f4a2713aSLionel Sambuc enum E0 {
3*f4a2713aSLionel Sambuc   E0_Val0 = 'a',
4*f4a2713aSLionel Sambuc   E0_Val1 = (17),
5*f4a2713aSLionel Sambuc   E0_Val2 = (1 << 2),
6*f4a2713aSLionel Sambuc   E0_Val3 = E0_Val2,
7*f4a2713aSLionel Sambuc   E0_Val4 = sizeof(int*),
8*f4a2713aSLionel Sambuc   E0_Val5 = (unsigned int)-1
9*f4a2713aSLionel Sambuc };
10*f4a2713aSLionel Sambuc 
11