Teach TreeTransform how to transform a pack expansion type into
[clang.git] / test / CodeGenCXX / enum.cpp
blobcfcd264bd347a6b01b37edb83af6d3e75d939f48
1 // RUN: %clang_cc1 -emit-llvm-only -verify %s
3 enum A { a } __attribute((packed));
4 int func(A x) { return x==a; }