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.
12 lines
543 B
12 lines
543 B
4 months ago
|
// RUN: %clang_cc1 -verify -pedantic -fsyntax-only -std=c99 %s
|
||
|
// RUN: %clang_cc1 -verify=expected,ext -pedantic -Wno-comment -fsyntax-only -std=c89 %s
|
||
|
// RUN: %clang_cc1 -verify=expected,ext -pedantic -fsyntax-only -x c++ %s
|
||
|
|
||
|
double _Imaginary foo; // ext-warning {{'_Imaginary' is a C99 extension}} \
|
||
|
// expected-error {{imaginary types are not supported}}
|
||
|
double _Complex bar; // ext-warning {{'_Complex' is a C99 extension}}
|
||
|
|
||
|
#if !defined(__cplusplus)
|
||
|
_Bool baz; // ext-warning {{'_Bool' is a C99 extension}}
|
||
|
#endif
|