Lines Matching full:standards

15                           // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
20 // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
26 // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
32 // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
38 // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
43 // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
50 static const int m = n; // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
58 thread_local const int m = n; // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
68 // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
79 // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
88 static constexpr int m = 42; // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
89 static constexpr Constexpr foo; // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
94 thread_local constexpr int m = 42; // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
95 thread_local constexpr Constexpr foo; // cxx23-warning {{definition of a thread_local variable in a constexpr function is incompatible with C++ standards before C++23}}
102 NonLiteral n; // cxx23-warning {{definition of a variable of non-literal type in a constexpr function is incompatible with C++ standards before C++23}}
114 // cxx23-warning {{use of this statement in a constexpr function is incompatible with C++ standards before C++23}}
127 test: // cxx23-warning {{use of this statement in a constexpr function is incompatible with C++ standards before C++23}}
141 static const int m = 32; // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
148 static const int m = n; // cxx23-warning {{definition of a static variable in a constexpr function is incompatible with C++ standards before C++23}}
158 // cxx23-warning {{use of this statement in a constexpr function is incompatible with C++ standards before C++23}}
169 // cxx23-warning {{definition of a variable of non-literal type in a constexpr function is incompatible with C++ standards before C++23}} \