annotate nocompile/bounds_checking_05.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 7300d411e85c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
452
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
1 // $HeadURL$
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
2 // $Date$
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
3 // $Author$
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
4
1382
7300d411e85c added bugzilla uri
thomask
parents: 528
diff changeset
5 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1019
7300d411e85c added bugzilla uri
thomask
parents: 528
diff changeset
6 // @desc@ [Issue 1019] regression: Error: array index X is out of bounds [0 .. Y]
7300d411e85c added bugzilla uri
thomask
parents: 528
diff changeset
7
7300d411e85c added bugzilla uri
thomask
parents: 528
diff changeset
8 // __DSTRESS_ELINE__ 15
452
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
9
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
10 module dstress.nocompile.bounds_checking_05;
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
11
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
12 int main(){
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
13 byte[5] a;
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
14 const int i=100;
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
15 a[i]=3;
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
16
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
17 return 0;
8c1ae5dd51b0 fixed test cases(names)
thomask
parents:
diff changeset
18 }