view tests/mini/bug16.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 bug16;

void func(long val)
{
    val >>= 32;
}

void main()
{
    func(64L);
}