OSDN Git Service

PR debug/34895
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / pr16792.C
1 // { dg-do compile }
2
3 struct S { S(); };
4 int foo (S b, double j) { };
5
6 int main ()
7 {
8   int foo (S, double);
9   S v;
10 }