bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/enum.cpp

6 lines
141 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -emit-llvm-only -verify %s
// expected-no-diagnostics
enum A { a } __attribute((packed));
int func(A x) { return x==a; }