gcc:
[official-gcc.git] / gcc / testsuite / gcc.dg / noncompile / pr16876.c
blob9587849b2fcbf8001cdbf6ffb514e112ca006037
1 /* { dg-options "-O -finline-functions" } */
3 static void g();
4 struct bigstack {
5 char space[4096];
6 };
9 void f() {
10 g(0); /* { dg-error "incompatible type for argument 1 of 'g'" } */
13 static void g(struct bigstack bstack) {
14 g(bstack);