llvm-project
15 строк · 394.0 Байт
1// RUN: %clang_cc1 -std=c89 -fsyntax-only -verify %s
2// RUN: %clang_cc1 -std=gnu89 -fsyntax-only -verify %s
3// RUN: %clang_cc1 -std=c99 -fsyntax-only -verify %s -DC99
4
5#ifdef C996// expected-no-diagnostics
7#endif8
9void foo(void) {10#ifndef C9911// expected-warning@+2{{GCC does not allow variable declarations in for loop initializers before C99}}12#endif13for (int i = 0; i < 10; i++)14;15}
16