Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
template-keyword3.C
blob: 59fe0fc180bd20478eff573f45fd4cf58380e3d0 [
file
] [
log
] [
blame
]
// PR c++/104608
class
Parameter
;
template
<
typename
R
>
class
Function
:
public
R
{
Function
();
};
template
<
typename
R
>
Function
<
R
>::
Function
()
{
this
->
template
Parameter
<
R
>();
}