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

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

struct B
{
  A a;
};

B b;