1 // PR c++/66255
2 
3 typedef int int_t;
4 
5 template <int_t &>
6 struct S { };
7 
8 int_t a;
9 S <a> b;
10