Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
concepts-ttp3.C
blob: 11b629392cfec792eb015740e451f24e01818ee9 [
file
] [
log
] [
blame
]
// PR c++/99909
// { dg-do compile { target c++20 } }
template
<
class
T
>
constexpr
bool
always_true
=
true
;
template
<
class
T
>
concept
C
=
always_true
<
T
>;
template
<
C
auto
>
struct
S
;
template
<
template
<auto>
class
TT
>
void
f
()
{
}
template
void
f
<
S
>();