Clang Project

clang_source_code/test/CodeGenCXX/virtual-inherited-destructor.cpp
1// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
2
3struct A { virtual ~A(); };
4struct B : A {
5  ~B() { }
6};
7B x;
8
9