OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / defarg14.C
1 // PR c++/28274
2
3 extern "C" {
4 void foo (int i, int j = 6);
5 void foo (int i = 4, int j);
6 }