In following code, aliased type T is not resolved.
----
void main()
{
alias int T;
static assert( is( T** : const(T**) )); // Line 4: causes an error
static assert( is( T* : const(T*) )); // OK
}
output:
----
test.d(4): Error: static assert (is(int*** : const(T***))) is false