This code fail to compile with 2.063, but doesn't with git head.
template Tuple(alias TPL)
{
alias TPL Tuple;
}
auto K = Tuple!(typeid(char));
With 2.063:
test.d(5): Error: expression & D10TypeInfo_a6__initZ is not a valid template value argument
test.d(5): Error: template instance test.Tuple!(& D10TypeInfo_a6__initZ) error instantiating
With git head:
(no error)