view tests/mini/bug4.d @ 817:f5d5bc9295b1

Fixed printf formatting flag problem on mingw (missed one)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 01 Dec 2008 19:51:45 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug4;

int func(int i)
{
    i += 2;
    i -= 3;
    return i;
}

void main()
{
    assert(func(4) == 3);
}