Files
ldc/tests/mini/tryfinally1.d
Tomas Lindquist Olsen 77e16a9302 Added test case for bug #100
Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
2008-10-05 17:28:15 +02:00

11 lines
121 B
D

void main()
{
try
{
}
finally
{
debug {} // the debug statement body can be anything
}
}