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