xxxxxxxxxx
import std.stdio;
class A
{
void hello() @safe { writeln("hello"); }
}
void main() @safe
A a = new A();
a.hello();
destroy(a);