PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / volatile1.C
blob9080ed5dc659cef85efb6fe98e5eb6100c71516d
1 // PR c++/26577
2 // The call to bar() was causing an inappropriate dereference of *this,
3 // which led to an abort in cp_expr_size.
5 struct A
7   A(const A&);
8   A& operator=(const A&);
9   static void bar();
10   void baz() volatile;
13 void A::baz() volatile
15   bar();