xref: /llvm-project/clang/test/CodeGenCXX/enum.cpp (revision ee275c82ffd451499595d753d0dc3576f5e2280f)
1 // RUN: clang-cc -emit-llvm-only -verify %s
2 
3 enum A { a } __attribute((packed));
4 int func(A x) { return x==a; }
5