mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
7 lines
185 B
C++
7 lines
185 B
C++
// RUN: %llvmgxx %s -emit-llvm -fapple-kext -S -o -
|
|
// The extra check in 71555 caused this to crash on Darwin X86
|
|
// in an assert build.
|
|
class foo {
|
|
virtual ~foo ();
|
|
};
|
|
foo::~foo(){}
|