Lines Matching full:reserved
3 int foo__bar() { return 0; } // expected-warning {{identifier 'foo__bar' is reserved because it contains '__'}}
4 static int _bar() { return 0; } // expected-warning {{identifier '_bar' is reserved because it starts with '_' at global scope}}
5 static int _Bar() { return 0; } // expected-warning {{identifier '_Bar' is reserved because it starts with '_' followed by a capital letter}}
6 int _barbouille() { return 0; } // expected-warning {{identifier '_barbouille' is reserved because it starts with '_' at global scope}}
8 void foo(unsigned int _Reserved) { // expected-warning {{identifier '_Reserved' is reserved because it starts with '_' followed by a capital letter}}
9 unsigned int __1 = // expected-warning {{identifier '__1' is reserved because it starts with '__'}}
16 template <class T> constexpr bool __toucan = true; // expected-warning {{identifier '__toucan' is reserved because it starts with '__'}}
19 concept _Barbotine = __toucan<T>; // expected-warning {{identifier '_Barbotine' is reserved because it starts with '_' followed by a capital letter}}
21 template <class __> // expected-warning {{'__' is reserved because it starts with '__'}}
27 template <class __> // expected-warning {{'__' is reserved because it starts with '__'}}
30 namespace _Barbidur { // expected-warning {{identifier '_Barbidur' is reserved because it starts with '_' followed by a capital letter}}
32 struct __barbidou {}; // expected-warning {{identifier '__barbidou' is reserved because it starts with '__'}}
35 int __barbouille; // expected-warning {{identifier '__barbouille' is reserved because it starts with '__'}}
38 int __babar() { return 0; } // expected-warning {{identifier '__babar' is reserved because it starts with '__'}}
43 class __barbapapa { // expected-warning {{identifier '__barbapapa' is reserved because it starts with '__'}}
45 int _Barbalala; // expected-warning {{identifier '_Barbalala' is reserved because it starts with '_' followed by a capital letter}}
48 enum class __menu { // expected-warning {{identifier '__menu' is reserved because it starts with '__'}}
49 __some, // expected-warning {{identifier '__some' is reserved because it starts with '__'}}
50 _Other, // expected-warning {{identifier '_Other' is reserved because it starts with '_' followed by a capital letter}}
54 enum _Menu { // expected-warning {{identifier '_Menu' is reserved because it starts with '_' followed by a capital letter}}
55 _OtheR_, // expected-warning {{identifier '_OtheR_' is reserved because it starts with '_' followed by a capital letter}}
56 _other_ // expected-warning {{identifier '_other_' is reserved because it starts with '_' at global scope}}
60 __some, // expected-warning {{identifier '__some' is reserved because it starts with '__'}}
61 _Other, // expected-warning {{identifier '_Other' is reserved because it starts with '_' followed by a capital letter}}
62 _other // expected-warning {{identifier '_other' is reserved because it starts with '_' at global scope}}
69 using _Barbamama = __barbapapa; // expected-warning {{identifier '_Barbamama' is reserved because it starts with '_' followed by a capital letter}}
79 long double operator"" _BarbeBleue(long double) // expected-warning {{identifier '_BarbeBleue' is reserved because it starts with '_' followed by a capital letter}}\
90 long double sacrebleu = operator"" _SacreBleu(1.2); // expected-warning {{identifier '_SacreBleu' is reserved because it starts with '_' followed by a capital letter}} \
97 struct _BarbeRouge { // expected-warning {{identifier '_BarbeRouge' is reserved because it starts with '_' followed by a capital letter}}
99 struct _BarbeNoire { // expected-warning {{identifier '_BarbeNoire' is reserved because it starts with '_' followed by a capital letter}}
103 friend void _barbegrise(); // expected-warning {{identifier '_barbegrise' is reserved because it starts with '_' at global scope}}
107 #define _Reserved // expected-warning {{macro name is a reserved identifier}}
109 #undef _Reserved // expected-warning {{macro name is a reserved identifier}}
113 extern "C" int _namespace_b; // expected-warning {{identifier '_namespace_b' is reserved because it starts with '_' and has C language linkage}}
115 extern "C" void _namespace_d(); // expected-warning {{identifier '_namespace_d' is reserved because it starts with '_' and has C language linkage}}