Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
concepts
/
pr67249.C
blob: 382eba110a6d94b7a867161728302ad88df14e00 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts" }
template
<
class
T
>
concept
bool
C1
=
true
;
template
<
class
A
,
class
B
>
struct
Pair
{};
void
f
(
Pair
<
auto
,
C1
>);