E2404 Dependent type qualifier 'qualifier' has no member type named 'name' (C++)
Go Up to Compiler Errors And Warnings (C++) Index
If a template declaration references a member of a dependent type, it is only possible to alert the user to the non-existence of this member during type instantiation for a given set of template arguments. For example:
template<class T>
class foo
{
typename T::A x; // we expect that "A" is a member type
};
struct bar { };
foo<bar> y;// error: "bar" has no member type named "A"