[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype27.C
blob956e5e408bbf76ff2683770ecb9d1b223be85d57
1 // PR c++/66255
3 typedef int int_t;
5 template <int_t &>
6 struct S { };
8 int_t a;
9 S <a> b;