blob: d8dab60881697fe03157d975ce5c7e94f3d3b844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// { 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() { }
|