repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
testsuite: fix c23-constexpr-2a.c test to use dg-do run
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
overload15.C
blob
ea0e548843d6bbbf559343f83ad94d3304b1158f
1
// PR c++79064 - Cannot overload member function templates on type of literal
2
// { dg-do compile }
3
4
template <unsigned N>
5
void f (char (*)[0u - 1 > N ? 1 : 7]);
6
7
template <unsigned N>
8
void f (char (*)[0u - 1ll > N ? 1 : 7]);
9
10
void f ()
11
{
12
char x[1], y[7];
13
14
f<0>(&x);
15
f<0>(&y);
16
}