annotate nocompile/array_initialization_09.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
445
c0dd17f9030b big array crash
thomask
parents:
diff changeset
1 // $HeadURL$
c0dd17f9030b big array crash
thomask
parents:
diff changeset
2 // $Date$
c0dd17f9030b big array crash
thomask
parents:
diff changeset
3 // $Author$
c0dd17f9030b big array crash
thomask
parents:
diff changeset
4
c0dd17f9030b big array crash
thomask
parents:
diff changeset
5 // @author@ zwang <nehzgnaw@gmail.com>
c0dd17f9030b big array crash
thomask
parents:
diff changeset
6 // @date@ 2005-04-17
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 516
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3688
445
c0dd17f9030b big array crash
thomask
parents:
diff changeset
8
446
58425c356fce big array index
thomask
parents: 445
diff changeset
9 // __DSTESS_ELINE__ 14
445
c0dd17f9030b big array crash
thomask
parents:
diff changeset
10
446
58425c356fce big array index
thomask
parents: 445
diff changeset
11 module dstress.nocompile.array_initialization_09;
445
c0dd17f9030b big array crash
thomask
parents:
diff changeset
12
c0dd17f9030b big array crash
thomask
parents:
diff changeset
13 int main(){
516
592f9ae41ba5 post DMD-0.122 review [1+2/n]
thomask
parents: 446
diff changeset
14 version(X86){char a[int.max+1];}else{static assert(0);}
445
c0dd17f9030b big array crash
thomask
parents:
diff changeset
15 return 0;
c0dd17f9030b big array crash
thomask
parents:
diff changeset
16 }
c0dd17f9030b big array crash
thomask
parents:
diff changeset
17