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.
10 lines
484 B
10 lines
484 B
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
|
|
void f1(int i[static 5]) { // expected-error{{C99}}
|
|
}
|
|
|
|
struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feature}}
|
|
|
|
Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
|
|
y: 25 }; // expected-warning{{designated initializers are a C99 feature}} \
|
|
// expected-warning{{use of GNU old-style field designator extension}}
|