[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / non-const1.C
blob16a385188873730cf6904a83fa0c6071d33702b2
1 // PR c++/48015
3 template <typename T> T f(T);
4 template <typename T> void g()
6   int const c = f (1);
7   int i = c - 0;