annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1303
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
1 // $HeadURL$
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
2 // $Date$
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
3 // $Author$
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
4
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
5 // @author@ Brad Anderson <brad@dsource.org>
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
6 // @date@ 2006-03-12
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=41
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
8 // @desc@ [Issue 41] md5.d compilation error with enable checking
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
9
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
10 module dstress.nocompile.p.pointer_03_A;
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
11
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
12 int main(){
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
13 byte[0] input;
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
14 void *b = &input[0];
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
15
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
16 return 0;
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
17 }
b5c364b14660 [Issue 41] md5.d compilation error with enable checking
thomask
parents:
diff changeset
18