summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/debug/pr16792.C
blob: 0efcbfa74eb69e9ad8d92e1bc8460f1249b749e9 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile }

struct S { S(); };
int foo (S b, double j) { return 0; };

int main ()
{
  int foo (S, double);
  S v;
}