Closed
Description
Clang throws ungrammatical error message for alias.
Old:
error: type alias 'A' cannot be referenced with a enum specifier
New:
error: type alias 'A' cannot be referenced with the 'enum' specifier
This can be rephrased for other cases as well, ex:
template<class T> using A = int;
struct A s;