annotate run/cast_07.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
215
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
1 // $HeadURL$
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
2 // $Date$
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
3 // $Author$
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
4
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
5 // @author@ Hiroshi Sakurai <Hiroshi_member@pathlink.com>
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
6 // @date@ 2004-12-29
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
7 // @uri@ news:cqtmid$3no$1@digitaldaemon.com
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 215
diff changeset
8 // @uri@ nntp://digitalmars.com/digitalmars.D.bugs/2618
52c9e86b6486 @url@ -> @uri@
thomask
parents: 215
diff changeset
9 // @uri@ http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F10
215
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
10
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
11 module dstress.run.cast_07;
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
12
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
13 int main(){
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
14 uint u;
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
15 u = 1 << 31;
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
16 assert( u == 0b1000_0000__0000_0000__0000_0000__0000_0000u);
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
17 return 0;
b79bc0c00bfc opShl and uint
thomask
parents:
diff changeset
18 }