view test/bug16.d @ 42:0b9b286b67b6 trunk

[svn r46] fix for shift operations added a simple opengl binding in demos
author lindquist
date Fri, 19 Oct 2007 15:16:11 +0200
parents
children
line wrap: on
line source

module bug16;

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

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