summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/destructor-template.cpp
blob: a7c8d247f021ad9a844c2463dd666b8ea240e66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang-cc -fsyntax-only -verify %s

template<typename A> class s0 {

  template<typename B> class s1 : public s0<A> {
    ~s1() {}
    s0<A> ms0;
  };

};


OpenPOWER on IntegriCloud