view tests/mini/condexp.d @ 1034:12b423e17860

Adjust mini tests to use D_InlineAsm
author Christian Kamm <kamm incasoftware de>
date Tue, 03 Mar 2009 18:26:39 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module condexp;

int f()
{
    return 42;
}

void main()
{
    int i = f() < 25 ? -1 : 1;
    /*int j = f() > 25 ? 1 : -1;
    assert(i);
    assert(!j);*/
}