view tests/mini/ptrcond.d @ 907:acc834cb1657

Add testcase for #189 to mini tests.
author Christian Kamm <kamm incasoftware de>
date Sun, 25 Jan 2009 12:38:29 +0100
parents f0c20d50d4b3
children
line wrap: on
line source

module mini.ptrcond;

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