view test/condexp.d @ 7:7a155ba88c53 trunk

[svn r11] added another struct sample
author lindquist
date Wed, 26 Sep 2007 19:17:54 +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);*/
}