summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/defaulted61.C
blob: e7e0a4862925675d18a77877d769944a987fbf60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler "_ZN3OneD0Ev" } }

// PR C++/88114
// Destructor of an abstract class was never generated
// when compiling the class - nor later due to the
// '#pragma interface'

#pragma implementation
#pragma interface

class One
{
 public:
  virtual ~One() = default;
  void some_fn();
  virtual void later() = 0;
 private:
  int m_int;
};

void One::some_fn() { }