brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · 7b69358 Raw
6 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -verify %s2 3enum class E : int const volatile { }; // expected-warning {{'const' and 'volatile' qualifiers in enumeration underlying type ignored}}4using T = __underlying_type(E);5using T = int;6