Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
partial-7_c.C
blob: 3d2a2873e3453c3cbaafc4a4abd1d941e33f7206 [
file
] [
log
] [
blame
]
// PR c++/118101
// { dg-additional-options "-fmodules" }
template
<typename>
struct
A
{};
template
<
typename
T
>
struct
B
{
A
<
T
*>
f
();
};
template
struct
B
<int>
;
import
B
;