Mercurial > projects > ldc
annotate test/bug23.d @ 50:6fcc08a4d406 trunk
[svn r54] Added support for nested delegates referencing parent's stack variables.
Replaced tester.sh with a version written in D.
A few bugfixes.
author | lindquist |
---|---|
date | Mon, 22 Oct 2007 15:40:56 +0200 |
parents | |
children | d9d5d59873d8 |
rev | line source |
---|---|
lindquist@50 | 1 module bug23; |
lindquist@50 | 2 void main() |
lindquist@50 | 3 { |
lindquist@50 | 4 int i; |
lindquist@50 | 5 delegate { |
lindquist@50 | 6 i++; |
lindquist@50 | 7 delegate { |
lindquist@50 | 8 i++; |
lindquist@50 | 9 }(); |
lindquist@50 | 10 }(); |
lindquist@50 | 11 printf("%d\n", i); |
lindquist@50 | 12 assert(i == 2); |
lindquist@50 | 13 } |