blob: 30f3563d8a2f285d2749139cf8aa095a615a4f1c [file] [log] [blame]
Eli Friedmanc16668a2009-11-27 01:42:12 +00001// RUN: clang-cc -emit-llvm %s -o - | FileCheck %s
2// CHECK: @_ZTI3foo = linkonce_odr constant
3class foo {
4 foo();
5 virtual ~foo();
6};
7
8foo::~foo() {
9}