1// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only2 3struct A { virtual ~A(); };4struct B : A {5 ~B() { }6};7B x;8 9