summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/virt-dtor-key.cpp
blob: 40c5a537cc539fccff6002ca477db2d4b7b8477f (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
// CHECK: @_ZTI3foo = constant
class foo {
   foo();
   virtual ~foo();
};

foo::~foo() {
}