view tests/mini/mem5.d @ 1200:3171f67ad006

Remove reference to llvm::cl::AllowInverse enum value which was removed in LLVM trunk.
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 08 Apr 2009 23:05:30 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.mem5;

class SC
{
    int* ip;
    this()
    {
        ip = new int;
    }
    ~this()
    {
        delete ip;
    }
    void check()
    {
        assert(ip !is null);
    }
}

void main()
{
    scope sc = new SC;
    sc.check();
}