blob: 93aea92d31faa523ae125372cc1e3c1c9ee26de4 [file] [log] [blame]
// Build don't link:
// GROUPS passed miscellaneous
// This should not emit an error about A::~A() being redefined; we
// should check that it is a pure virtual.
class A {
public:
virtual ~A() = 0;
};
A::~A() {}