view test/condexp.d @ 261:5723b7385c25 trunk

[svn r279] fixed bug in makewebstatistics, regenerated output
author ChristianK
date Fri, 13 Jun 2008 08:21:11 +0200
parents c53b6e3fe49a
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);*/
}