gcc/testsuite/ChangeLog:
[official-gcc.git] / gcc / testsuite / g++.dg / template / overload15.C
blob567344c9ff7d7ea0029c0df77fde10edec19fb17
1 // PR c++79064 - Cannot overload member function templates on type of literal
2 // { dg-do compile }
4 template <unsigned N>
5 void f (char (*)[0u - 1 > N ? 1 : 7]);
7 template <unsigned N>
8 void f (char (*)[0u - 1l > N ? 1 : 7]);
10 void f ()
12   char x[1], y[7];
14   f<0>(&x);
15   f<0>(&y);