function-1.tree   [plain text]


// { dg-do compile }
static int foo ();
static int bar (int a);

foo
{
	return 1;
}

bar
{
	a = a + foo ();
	return a;
}