xxxxxxxxxx
immutable class Foo {}
immutable struct Bar {}
void main()
{
import std.stdio : writeln;
immutable Foo a = new Foo();
Bar* b = new Bar();
writeln("typeof(a): ", typeof(a).stringof);
writeln("typeof(b): ", typeof(b).stringof);
}