view tests/mini/ptrcond.d @ 1118:dde9dbae052a

Make this test a bit more meaningful
author Frits van Bommel <fvbommel wxs.nl>
date Sat, 14 Mar 2009 22:29:31 +0100
parents f0c20d50d4b3
children
line wrap: on
line source

module mini.ptrcond;

void main()
{
    char[4]* cp;
    void* vp = &cp;
    assert(cp < vp);
}