blob: 42e06de60abbb5f2da9657fb6fdb5253d8e45741 [file] [log] [blame]
Douglas Gregorb2e400a2010-02-18 02:21:22 +00001// Matching
2enum E0 {
Douglas Gregorf638f952010-02-19 01:07:06 +00003 E0_Val0 = 'a',
4 E0_Val1 = (17),
Douglas Gregor44080632010-02-19 01:17:02 +00005 E0_Val2 = (1 << 2),
Douglas Gregorbd249a52010-02-19 01:24:23 +00006 E0_Val3 = E0_Val2,
7 E0_Val4 = sizeof(int*)
Douglas Gregorb2e400a2010-02-18 02:21:22 +00008};
9