blob: 40c5a537cc539fccff6002ca477db2d4b7b8477f [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
2// CHECK: @_ZTI3foo = constant
Eli Friedmanc16668a2009-11-27 01:42:12 +00003class foo {
4 foo();
5 virtual ~foo();
6};
7
8foo::~foo() {
9}