summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/synth2.C
blob: 795ce42893c85179f00dac6a8e4ad6ab2e130706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/34180

struct G {
  G();				// { dg-message "" "candidate" }
  G(G&);			// { dg-message "" "candidate" }
};

class A
{				// { dg-error "no match" }
  const G g;
};

int main()
{
  A a;
  A b = a;			// { dg-message "required here" }
}