view tests/mini/ptrcond.d @ 726:8d46c475842a

Add test for broken ClassInfo.create method. Thanks MrSunshine.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Oct 2008 13:41:03 +0100
parents f0c20d50d4b3
children
line wrap: on
line source

module mini.ptrcond;

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