Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
      2 
      3 struct A { virtual ~A(); };
      4 struct B : A {
      5   ~B() { }
      6 };
      7 B x;
      8 
      9