1// RUN: %clang_cc1 -emit-llvm-only -verify %s
2
3enum A { a } __attribute((packed));
4int func(A x) { return x==a; }
5