comparison nocompile/p/pointer_03_A.d @ 1303:b5c364b14660

[Issue 41] md5.d compilation error with enable checking Brad Anderson <brad@dsource.org> 2006-03-12 http://d.puremagic.com/issues/show_bug.cgi?id=41
author thomask
date Sun, 31 Dec 2006 02:00:12 +0000
parents
children
comparison
equal deleted inserted replaced
1302:ec017b93fe95 1303:b5c364b14660
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Brad Anderson <brad@dsource.org>
6 // @date@ 2006-03-12
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=41
8 // @desc@ [Issue 41] md5.d compilation error with enable checking
9
10 module dstress.nocompile.p.pointer_03_A;
11
12 int main(){
13 byte[0] input;
14 void *b = &input[0];
15
16 return 0;
17 }
18