struct A
{
  int a, b;
};

void f(A a)
{ }


int main(int argc, char *argv[])
{
  f((struct A){1, 2});

  return 0;
}
