aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/ctor5.C
blob: 819458598a3c933d4cc873cf082472eb07ae4764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/27309

struct A
{
  int i;
  A() i() {}  // { dg-error "expected" }
}; // { dg-error "expected" }

struct B
{
  A a;
};

B b;