brintos

brintos / llvm-project-archived public Read only

0
0
Text · 219 B · ed85ade Raw
11 lines · cpp
1// RUN: %clang_cc1 -std=c++98 -verify %s2 3enum E {};4enum F {};5 6struct A {7  // OK, this is an enumeration bit-field.8  enum E : int(0);9  enum F : int{0}; // expected-error {{expected '(' for function-style cast}}10};11