repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp23
/
auto-fncast7.C
blob
763164f3e5ba58d5f64289d698e6868fef42dc5f
1
// PR c++/103401
2
// { dg-do compile { target c++23 } }
3
4
void f(decltype(auto(0))) { }
5
6
int main()
7
{
8
f<int,int>(0); // { dg-error "no matching function" }
9
}