view test/bug16.d @ 52:0c77619e803b trunk

[svn r56] Initial support for TypeInfo. Enums not work. Several other bugfixes.
author lindquist
date Tue, 23 Oct 2007 05:55:12 +0200
parents 0b9b286b67b6
children
line wrap: on
line source

module bug16;

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

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