aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pch/template-1.Hs
blob: afdb13f0862a74012a93f55ffae1f48d0ea1005b (plain)
1
2
3
4
5
template<int> struct A
{
  enum { a, b = a };
  void foo(A<b>);
};