summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/ambig1.C
blob: 9be10eb3ad6e48048fc8d6b7ac9df4d578f7860d (plain)
1
2
3
4
5
6
7
// { dg-do assemble  }
// { dg-options "-pedantic-errors" }
// Testcase for ambiguity between functional cast and abstract declarator.
// This ambiguity accounts for 6 of the r/r conflicts.

int i = sizeof (int ());	// { dg-error "" } sizeof applied to fn type
int j = sizeof (int () + 1);