Mercurial > projects > ldc
annotate tests/mini/compile_rawvardeclinfinally.d @ 1651:cb960b882ca3 tip
bindings were moved to dsource.org/projects/bindings/
author | Moritz Warning <moritzwarning@web.de> |
---|---|
date | Thu, 20 May 2010 20:05:03 +0200 |
parents | 8baf611f0009 |
children |
rev | line source |
---|---|
fvbommel@1185 | 1 void foo() { |
fvbommel@1185 | 2 void delegate()[] bar; |
fvbommel@1185 | 3 try { |
fvbommel@1185 | 4 } finally { |
fvbommel@1185 | 5 foreach (dg; bar) |
fvbommel@1185 | 6 dg(); |
fvbommel@1185 | 7 } |
fvbommel@1185 | 8 } |