You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
236 B

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// PR7477
enum __attribute__((packed)) E {
Ea, Eb, Ec, Ed
};
void test_E(enum E e) {
switch (e) {
case Ea:
case Eb:
case Ec:
case Ed:
break;
}
}