xxxxxxxxxx
import std.stdio;
import std.traits;
void main()
{
typeof(Unqual!int.init * Unqual!int.init) a;
writeln(typeid(a));
}