aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/guard3.C
blob: fd9d00e279677fc6c6f03398934eb3e1ec594140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/45603

extern "C" int __cxa_guard_acquire();

struct A
{
  ~A();
};

A* f()
{
  static A a;
  return &a;
}