mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
19 lines
176 B
C++
19 lines
176 B
C++
// RUN: %clang_cc1 %s -emit-llvm-only
|
|
|
|
class Base {
|
|
public:
|
|
virtual ~Base();
|
|
};
|
|
|
|
Base::~Base()
|
|
{
|
|
}
|
|
|
|
class Foo : public Base {
|
|
public:
|
|
virtual ~Foo();
|
|
};
|
|
|
|
Foo::~Foo()
|
|
{
|
|
}
|