blob: 509d40ae2fef3a8e767837129dc8d12c818102d5 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm-only
Eli Friedman5fcf1f02009-12-02 07:16:50 +00002
3struct A { virtual ~A(); };
4struct B : A {
5 ~B() { }
6};
7B x;
8