rt_gccstream/gcc/testsuite/g++.dg/parse/expr1.C

9 lines
80 B
C

struct A {
A (int, int);
void f ();
};
void f (int a) {
A (a, a).f ();
}