Home | History | Annotate | Download | only in Parser

Lines Matching full:__identifier

235 int __identifier(generic) = 3;
236 int __identifier(int) = 4;
237 struct __identifier(class) { __identifier(class) *__identifier(for); };
238 __identifier(class) __identifier(struct) = { &__identifier(struct) };
240 int __identifier for; // expected-error {{missing '(' after '__identifier'}}
241 int __identifier(else} = __identifier(for); // expected-error {{missing ')' after identifier}} expected-note {{to match this '('}}
242 #define identifier_weird(x) __identifier(x
247 extern int __identifier(and) r; // expected-error {{cannot convert '&&' token to an identifier}}
250 __identifier(() // expected-error {{cannot convert '(' token to an identifier}}
251 __identifier(void) // expected-error {{use of undeclared identifier 'void'}}
252 __identifier()) // expected-error {{cannot convert ')' token to an identifier}}
254 __identifier(1) // expected-error {{cannot convert <numeric_constant> token to an identifier}}
255 __identifier(+) // expected-error {{cannot convert '+' token to an identifier}}
256 __identifier("foo") // expected-error {{cannot convert <string_literal> token to an identifier}}
257 __identifier(;) // expected-error {{cannot convert ';' token to an identifier}}