Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
tpl-tpl-friend-1_a.C
blob: 23ebfde701c3a218301d41de19c4b89aa8040c3e [
file
] [
log
] [
blame
]
// { dg-additional-options -fmodules-ts }
export
module
foo
;
// { dg-module-cmi foo }
template
<
typename
T
>
class
TPL
{
template
<
typename
U
>
friend
void
foo
(
U
);
};
template
class
TPL
<char>
;
template
<
typename
V
>
void
foo
(
V x
)
{
}