blob: 7e631c1d78a17466a7d981bd2a622b862c879266 [file] [log] [blame]
Peter Collingbournee1e35f72013-06-28 20:45:28 +00001// RUN: %clang_cc1 %s -fno-rtti -cxx-abi microsoft -triple=i386-pc-win32 -emit-llvm -o %t
2
3struct A {};
4struct B : virtual A {
5 virtual ~B();
6};
7struct C : B {
8 C();
9};
10
11C::C() {}