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>();
}