OSDN Git Service

Merge from transactional-memory branch.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / tm / pr46714.C
1 // { dg-do compile }
2 // { dg-options "-fgnu-tm -O" }
3
4 static int asdf __attribute__ ((__weakref__("funky")));
5
6 class Building
7 {
8 public:
9   __attribute__((transaction_safe)) ~Building(void);
10 };
11
12 Building::~Building()
13 {
14 }