Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
concepts-template-parm10.C
blob: 047c19e95ac0efbe3307ce5a1ffc2cfaa3b809cc [
file
] [
log
] [
blame
]
// { dg-do compile { target c++20 } }
template
<class>
concept
Dummy
=
true
;
template
<typename>
class
example
{
template
<
Dummy
<>
U
>
friend
auto
func
();
};