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