view gcc/testsuite/g++.dg/cpp0x/defaulted62.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler-not "_ZN3OneD0Ev" } }

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

// HERE, in g++.dg/cpp0x/defaulted62.C:
// As we have commented the pragmas, it should NOT be created
// #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() { }