annotate norun/s/struct_26_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 67d6d7538065
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1095
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
1 // $HeadURL$
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
2 // $Date$
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
3 // $Author$
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
4
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
5 // @author@ Jarrett Billingsley <jarrett.billingsley@gmail.com>
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
6 // @date@ 2006-08-12
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1095
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=285
1095
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
8
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
9 // __DSTRESS_TORTURE_BLOCK__ -release
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 21
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
11
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
12 module dstress.norun.s.struct_26_A;
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
13
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
14 struct S{
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
15 void dummy(){
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
16 }
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
17 }
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
18
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
19 int main(){
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
20 S* s = null;
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
21 s.dummy();
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
22 return 0;
67d6d7538065 [Issue 285] Struct method null pointer assert has line number of "0"
thomask
parents:
diff changeset
23 }