// "cfa-cpp -ne simple.c"

int @voon;
double @voon;

int @bort(int);
int @bort(double);

void g( int );

void
f()
{
  float x;
  double x;
  @bort(x);
  @bort(int);
  g( @voon );
}
