aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/value2.C
blob: fbe16647126434f45e316ae64bcec8534b6e512e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/35116
// Test that break_out_target_exprs works properly with complex
// value-initialization.

struct A
{
  virtual void f ();
};

struct B
{
  A a;
};

struct C
{
  C (int, B = B());
};

void f ()
{
  C c (4);
}