view tangotests/mem4.d @ 228:52d1e9d27dc6 trunk

[svn r244] added another asm test.
author lindquist
date Sat, 07 Jun 2008 19:20:15 +0200
parents c4c9b4ac021b
children
line wrap: on
line source

module tangotests.mem4;

import tango.stdc.stdio;

class C {
    int* ptr;
    this() {
        printf("this()\n");
        ptr = new int;
    }
    ~this() {
        printf("~this()\n");
        delete ptr;
        assert(ptr is null);
    }
    final void check()
    {
        printf("check()\n");
        assert(ptr !is null);
    }
}

void main()
{
    C c = new C();
    c.check();
    delete c;
    assert(c is null);
}