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-fncast16.C
blob
e2c13f6b050b47b6084611b80b49f9eafa90dc02
1
// PR c++/110025
2
// { dg-do compile { target c++23 } }
3
4
template<auto V, class = decltype(auto(V)), class = decltype(auto{V})>
5
struct A { };
6
7
template<auto V>
8
A<V> f();
9
10
int main() {
11
f<0>();
12
}