PR c++/79064
[official-gcc.git] / gcc / testsuite / g++.dg / template / overload15.C
blobea0e548843d6bbbf559343f83ad94d3304b1158f
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 - 1ll > N ? 1 : 7]);
10 void f ()
12   char x[1], y[7];
14   f<0>(&x);
15   f<0>(&y);