[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / vtable-cast-crash.cpp
blob58f9e0bf8f76852881c718e92a2040aa12b25c87
1 // RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s
2 struct A
4 A();
5 virtual ~A();
6 };
8 struct B: A
10 B();
11 ~B();
14 B::B()
18 B::~B()