1// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s2struct A3{4A(); 5virtual ~A();6};7 8struct B: A9{10 B();11 ~B();12};13 14B::B()15{16}17 18B::~B()19{20}21 22