OSDN Git Service

* parser.c (cp_parser_direct_declarator): Always complain about
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / expr1.C
1 struct A {
2   A (int, int);
3   void f ();
4 };
5
6 void f (int a) {
7   A (a, a).f ();
8 }