aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/default1.C
blob: afbac13bf63f57a7993018eecaaa793dd261fe41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// PRMS Id: 5204
// Bug: g++ bashes the type of add_sym with the type of add, so calling it
// with one parameter generates an error.

int add(int const &symbol,
	const unsigned char flags=(void*)0); // { dg-error "" } invalid default arg

int add_sym(int const &symbol,
	    const unsigned char flags=0);

int main()
{
   int fname;
   add_sym(fname);      // Guarantee a symbol exists
}