int a;
int b;
float b;

void g( int );

void
f( void )
{
  g( (b, a) );
  g( (b, a, b) );
  g( (a, b, b) );
  sizeof b;
}
