mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
12 lines
87 B
D
12 lines
87 B
D
module bug16;
|
|
|
|
void func(long val)
|
|
{
|
|
val >>= 32;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func(64L);
|
|
}
|