blob: 3d99a021607375d340c522eae0ee5fb3f55aaee4 [file] [log] [blame]
// RUN: clang-cc %s -emit-llvm -o - | FileCheck %s
struct A {
virtual ~A();
};
void f(A *a) {
// CHECK: call void %
a->~A();
}