aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/ref8.C
blob: a2fc8471996c1adeb057a9299ff4d22353c8d141 (plain)
1
2
3
4
5
6
7
8
// PR c++/60222

template<int&> struct A
{
  template<typename> struct B;

  template<typename T> struct B<T*> {};
};