1// { dg-do assemble  }
2// { dg-options "-pedantic-errors" }
3// Testcase for ambiguity between functional cast and abstract declarator.
4// This ambiguity accounts for 6 of the r/r conflicts.
5
6int i = sizeof (int ());	// { dg-error "" } sizeof applied to fn type
7int j = sizeof (int () + 1);
8