xxxxxxxxxx
void main()
{
import std.stdio : writeln;
alias MyInt = int;
struct MyStruct
{
}
class MyClass
{
}
alias a = (bool) { };
alias b = (int) { };
alias c = (long) { };
alias d = (char[]) { };
alias e = (char[char]) { };
alias f = (string) { };
alias g = (size_t) { };
alias h = (MyInt) { };
alias i = (Object) { };
alias j = (MyStruct) { };
writeln(typeof(a).stringof);
writeln(typeof(b).stringof);
writeln(typeof(c).stringof);
writeln(typeof(d).stringof);
writeln(typeof(e).stringof);
writeln(typeof(f).stringof);
writeln(typeof(g).stringof);
writeln(typeof(h).stringof);
writeln(typeof(i).stringof);
writeln(typeof(j).stringof);
}