// section 6.5.17

void f(int, int, int);

void g(){
	int a, c, t;

	f(a, (t=3, t+2), c);
}
