PR c++/85262 - ICE with redundant qualification on constructor.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / expr1.C
blob2ef82185b892a65aba32c73a902e33d40bb00567
1 struct A {
2   A (int, int);
3   void f ();
4 };
6 void f (int a) {
7   A (a, a).f ();