Files
ldc/tests/mini/bug16.d

12 lines
87 B
D

module bug16;
void func(long val)
{
val >>= 32;
}
void main()
{
func(64L);
}