aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wsequence-point-2.C
blob: 6e00e0233be8332c71077007ed767575256b4751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// PR c++/45894
// { dg-do compile { target c++11 } }
// { dg-options "-Wsequence-point" }

struct F
{
  template <typename = int>
  void bar ();
};
template <typename = int>
struct V
{
  V (const V &) { F::bar <>; }
};
struct C
{
  V <> v;
};
struct B
{
  C f ();
};
struct A
{
  C c;
  B b;
  A () : c (b.f ()) { }
};