Open
Description
Bugzilla Link | 16909 |
Version | unspecified |
OS | Windows NT |
CC | @hyp,@benlangmuir,@DougGregor |
Extended Description
Testcase:
template <typename,typename>
struct base {
template <typename> struct derived;
};
template <typename T, typename U, typename V> base<T, U>::derived<V> foo();
We should print an error about the missing typename
and template keywords.