blob: afe2cfc30019d80fe44109fe28c55461dcac5459 [file] [log] [blame]
Fariborz Jahanianc87efbd2009-08-25 16:37:49 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3template<typename A> class s0 {
4
5 template<typename B> class s1 : public s0<A> {
6 ~s1() {}
7 s0<A> ms0;
8 };
9
10};
11
Douglas Gregor31658df2009-11-20 19:58:21 +000012struct Incomplete;
Fariborz Jahanianc87efbd2009-08-25 16:37:49 +000013
Douglas Gregor31658df2009-11-20 19:58:21 +000014template<typename T>
15void destroy_me(T me) {
16 me.~T();
17}
18
19template void destroy_me(Incomplete*);