module main;
import std.stdio;
void main(string[] args)
{
        with(test())
        {
                foo();
        }
}
struct test
{
        void foo()
        {
                writeln("foo");
        }
        ~this()
        {
                writeln("destoy");
        }
}

prints:
     destroy
     foo

Is this a bug?

Reply via email to