1// PR c++/56684
2
3template < int T > struct S
4{
5  static const int Ti = T;
6  S() { 1 << Ti; }
7};
8