Mercurial > projects > ldc
annotate test/bug22.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 bug22; |
lindquist@50 | 2 |
lindquist@50 | 3 void main() |
lindquist@50 | 4 { |
lindquist@50 | 5 int i; |
lindquist@50 | 6 delegate { |
lindquist@50 | 7 i = 42; |
lindquist@50 | 8 }(); |
lindquist@50 | 9 printf("%d\n", i); |
lindquist@50 | 10 assert(i == 42); |
lindquist@50 | 11 } |