view tests/mini/bug16.d @ 744:ef5f75ae6895

Fix minitest breakage from the x86-64 patch.
author Christian Kamm <kamm incasoftware de>
date Sat, 01 Nov 2008 14:41:57 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug16;

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

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