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

template < int T > struct S
{
  static const int Ti = T;
  S() { 1 << Ti; }
};