aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/ambig1.C
blob: 4551dc7d6e45a044b6aabf92b541116895647bc4 (plain)
1
2
3
4
5
6
// Testcase for ambiguity between functional cast and abstract declarator.
// This ambiguity accounts for 6 of the r/r conflicts.
// Special g++ Options: -pedantic-errors

int i = sizeof (int ());	// ERROR - sizeof applied to fn type
int j = sizeof (int () + 1);