summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/ptrmem11.C
blob: a88b70660e76c34dc4f6091b89df8e5bf67b59dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/18407

template <typename Klasse>
struct the_base{
  template <void (Klasse::*Fn)()> void foo() { }
};

template <typename T>
struct derivedT: the_base<derivedT<T> > {
  typedef the_base<derivedT<T> > parent;
  void ice(){
    this->parent::template foo< &derivedT<T>::ice>();
  }
};

int main() {
  derivedT<int> dT;
  dT.ice();
}