OSDN Git Service

up
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / default1.C
1 // PRMS Id: 5204
2 // Bug: g++ bashes the type of add_sym with the type of add, so calling it
3 // with one parameter generates an error.
4 // Build don't link:
5
6 int add(int const &symbol,
7         const unsigned char flags=(void*)0); // ERROR - invalid default arg
8
9 int add_sym(int const &symbol,
10             const unsigned char flags=0);
11
12 main()
13 {
14    int fname;
15    add_sym(fname);      // Guarantee a symbol exists
16 }