Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
nontype-auto7.C
blob: 2637a890afb27238606773abf2d0ef17a765ccd3 [
file
] [
log
] [
blame
]
// PR c++/78334
// { dg-do compile { target c++17 } }
template
<auto>
auto
constexpr_string
([](
auto
)
{});
void
foo
()
{
constexpr_string
<
0
>(
0
);
}