1 2 3 4 5 6 7 8 9 10
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s struct A { virtual ~A(); }; void f(A *a) { // CHECK: call void % a->~A(); }