blob: 956e5e408bbf76ff2683770ecb9d1b223be85d57 [file] [log] [blame]
// PR c++/66255
typedef int int_t;
template <int_t &>
struct S { };
int_t a;
S <a> b;