Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / virtual-destructor-synthesis.cpp
blob90f66a817db11d6911a2f50a5ee0a1603329a189
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 struct box {
4 virtual ~box();
5 };
7 struct pile_box : public box {
8 pile_box(box *);
9 };
11 pile_box::pile_box(box *pp)
15 // CHECK: call void @_ZdlPv