comparison test/c.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1 module c;
2
3 void main()
4 {
5 ushort a = 0xFFF0;
6 ushort b = 0x0FFF;
7 auto t = a & b;
8 a &= b;
9 assert(t == a);
10 }