annotate nocompile/bounds_checking_04.d @ 1382:7300d411e85c

added bugzilla uri
author thomask
date Sun, 04 Mar 2007 13:07:05 +0000
parents 7ca759f6f428
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
450
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
1 // $HeadURL$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
2 // $Date$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
3 // $Author$
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
4
1382
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
5 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1019
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
6 // @desc@ [Issue 1019] regression: Error: array index X is out of bounds [0 .. Y]
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
7
7300d411e85c added bugzilla uri
thomask
parents: 450
diff changeset
8 // __DSTRESS_ELINE__ 15
450
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
9
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
10 module dstress.nocompile.bounds_checking_04;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
11
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
12 int main(){
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
13 byte[5] a;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
14 const int i=-1;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
15 a[i]=3;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
16
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
17 return 0;
7ca759f6f428 array[-1]
thomask
parents:
diff changeset
18 }