view tests/mini/bug16.d @ 749:db2dd9861600

Add basic CMake build file.
author Christian Kamm <kamm incasoftware de>
date Sun, 02 Nov 2008 21:47:31 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug16;

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

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