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

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

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