aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/g++.dg/init/volatile1.C
blob: 9080ed5dc659cef85efb6fe98e5eb6100c71516d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/26577
// The call to bar() was causing an inappropriate dereference of *this,
// which led to an abort in cp_expr_size.

struct A
{
  A(const A&);
  A& operator=(const A&);
  static void bar();
  void baz() volatile;
};

void A::baz() volatile
{
  bar();
}