comparison 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
comparison
equal deleted inserted replaced
41:835320b88ad6 42:0b9b286b67b6
1 module bug16;
2
3 void func(long val)
4 {
5 val >>= 32;
6 }
7
8 void main()
9 {
10 func(64L);
11 }