view clang/test/Parser/c99.c @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents 1d019706d866
children
line wrap: on
line source

// 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