annotate run/bug_e2ir_299_B.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 726e10340496
children 6e4063f99377
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
1 // $HeadURL$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
2 // $Date$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
3 // $Author$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
4
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
5 // @author@ h3r3tic <foo@bar.baz>
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
6 // @date@ 2004-12-24
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
7 // @uri@ news:cqi3v3$r2o$1@digitaldaemon.com
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 830
diff changeset
8 // @uri@ nntp://digitalmars.com/digitalmars.D.bugs/2601
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
9
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
10 module dstress.run.bug_e2ir_299_B;
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
11
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
12 int main(){
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
13 void foo() {}
830
726e10340496 added DMD-0.146 results
thomask
parents: 351
diff changeset
14 auto a = delegate void() { foo(); };
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
15 return 0;
351
9cf29a72bdaf delegate/function - nested functions
thomask
parents: 211
diff changeset
16 }