You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
621 B
16 lines
621 B
4 months ago
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||
|
|
||
|
// expected-error@+5{{expected ')'}}
|
||
|
// expected-note@+4{{to match this '('}}
|
||
|
// expected-error@+3{{expected unqualified-id}}
|
||
|
// expected-error@+2{{extraneous closing brace}}
|
||
|
// expected-error@+1{{C++ requires a type specifier for all declarations}}
|
||
|
_ExtInt(32} a;
|
||
|
// expected-error@+2{{expected expression}}
|
||
|
// expected-error@+1{{C++ requires a type specifier for all declarations}}
|
||
|
_ExtInt(32* ) b;
|
||
|
// expected-error@+3{{expected '('}}
|
||
|
// expected-error@+2{{expected unqualified-id}}
|
||
|
// expected-error@+1{{C++ requires a type specifier for all declarations}}
|
||
|
_ExtInt{32} c;
|