aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/default1.C
blob: e6ef57768e0a4bc27ae4341aca285ddd91bac207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.
// Build don't link:

int add(int const &symbol,
	const unsigned char flags=(void*)0); // ERROR - invalid default arg

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

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