static int Static()
{
  return 1;
}

int CallStaticA()
{
  return Static();
}