[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git] / gcc / testsuite / g++.dg / cpp23 / auto-fncast16.C
blobe2c13f6b050b47b6084611b80b49f9eafa90dc02
1 // PR c++/110025
2 // { dg-do compile { target c++23 } }
4 template<auto V, class = decltype(auto(V)), class = decltype(auto{V})>
5 struct A { };
7 template<auto V>
8 A<V> f();
10 int main() {
11   f<0>();