I've named a type by short synonym. In next line I try to use this type via its this new short name somehow (doesn't matter):
using A = SomeTypeName;
using B = A;
But in line 2 the compiler doesn't see the name "A" & generates the error (see in the title). Why?
ECMA-334 9.4.1 Using alias directives say: