Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 %s -fno-rtti -cxx-abi microsoft -triple=i386-pc-win32 -emit-llvm -o %t
      2 
      3 struct A {};
      4 struct B : virtual A {
      5   virtual ~B();
      6 };
      7 struct C : B {
      8   C();
      9 };
     10 
     11 C::C() {}
     12