blob: 6bb4e370a48cacd33d3da1c5051f7e290ec57b55 [file] [log] [blame]
// { dg-do compile }
static int foo ();
static int bar (int a);
foo
{
return 1;
}
bar
{
a = a + foo ();
return a;
}