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