Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / dcl.dcl / dcl.enum / p2.cpp
blobde826d0570422f072afc023a4f535096feec7a64
1 // RUN: %clang_cc1 -std=c++11 -verify %s
3 // expected-no-diagnostics
4 enum class E : int const volatile { };
5 using T = __underlying_type(E);
6 using T = int;