[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / virtual-inherited-destructor.cpp
blob3ca7b6df8c3d4e6829009280828ae087d5809a47
1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
3 struct A { virtual ~A(); };
4 struct B : A {
5 ~B() { }
6 };
7 B x;