android_mt6572_jiabo/external/clang/test/CodeGenCXX/enum.cpp
2025-09-05 16:56:03 +08:00

5 lines
141 B
C++

// RUN: %clang_cc1 -emit-llvm-only -verify %s
// expected-no-diagnostics
enum A { a } __attribute((packed));
int func(A x) { return x==a; }