comparison nocompile/array_initialization_09.d @ 516:592f9ae41ba5

post DMD-0.122 review [1+2/n]
author thomask
date Tue, 10 May 2005 23:59:14 +0000
parents 58425c356fce
children b8c0195059d9
comparison
equal deleted inserted replaced
515:c7748379f0ce 516:592f9ae41ba5
9 // __DSTESS_ELINE__ 14 9 // __DSTESS_ELINE__ 14
10 10
11 module dstress.nocompile.array_initialization_09; 11 module dstress.nocompile.array_initialization_09;
12 12
13 int main(){ 13 int main(){
14 char a[int.max/32]; 14 version(X86){char a[int.max+1];}else{static assert(0);}
15 return 0; 15 return 0;
16 } 16 }
17 17