view tangotests/mem2.d @ 236:df1abfe27be6 trunk

[svn r252] added warnings about using an up to date runtime
author ChristianK
date Sun, 08 Jun 2008 18:20:48 +0200
parents c4c9b4ac021b
children
line wrap: on
line source

module tangotests.mem2;

void main()
{
    int* ip = new int;
    assert(*ip == 0);
    *ip = 4;
    assert(*ip == 4);
    delete ip;
    assert(ip is null);
}