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