view test/bug16.d @ 189:3aed08fb64f4 trunk

[svn r205] moved some local static variables used for memset and memcpy intrinsics to IrState
author ChristianK
date Sat, 10 May 2008 19:00:11 +0200
parents 0b9b286b67b6
children
line wrap: on
line source

module bug16;

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

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