[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / clang / test / Parser / objcxx-enum.mm
bloba86c420f9fbee9b5f3b1f393295bbfff3501cf7b
1 // RUN: %clang_cc1 -verify -std=c++98 %s
2 // RUN: %clang_cc1 -verify=cxx11 -std=c++11 %s
4 #if __cplusplus < 201103L
5 // expected-no-diagnostics
6 #endif
8 // Objective-C allows C++11 enumerations in C++98 mode. We disambiguate in
9 // order to make this a backwards-compatible extension.
10 struct A {
11   enum E : int{a}; // OK, enum definition
12   enum E : int(a); // OK, bit-field declaration cxx11-error{{anonymous bit-field}}
14 _Static_assert(A::a == 0, "");