[X86] Move getGFNICtrlMask before CTLZ/CTTZ lowering. NFC.
[llvm-project.git] / clang / test / SemaCXX / static-data-member.cpp
blobfb63da9b40099d876581666418b88273f29c9a1a
1 // RUN: %clang_cc1 %std_cxx98- -fsyntax-only -verify -w %s
3 struct ABC {
4 static double a;
5 static double b;
6 static double c;
7 static double d;
8 static double e;
9 static double f;
12 double ABC::a = 1.0;
13 extern double ABC::b = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
14 static double ABC::c = 1.0; // expected-error {{'static' can only be specified inside the class definition}}
15 __private_extern__ double ABC::d = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
16 auto double ABC::e = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
17 #if __cplusplus < 201703L
18 register double ABC::f = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
19 #endif