blob: 52b62edd2944758db824c10c0896a3aa86a47a81 [file] [log] [blame]
Eli Friedman5fcf1f02009-12-02 07:16:50 +00001// RUN: clang-cc %s -emit-llvm-only
2
3struct A { virtual ~A(); };
4struct B : A {
5 ~B() { }
6};
7B x;
8