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)
This commit is contained in:
Tomas Lindquist Olsen
2008-10-05 17:28:15 +02:00
parent f721aee1a4
commit 77e16a9302
3 changed files with 11 additions and 6 deletions

10
tests/mini/tryfinally1.d Normal file
View File

@@ -0,0 +1,10 @@
void main()
{
try
{
}
finally
{
debug {} // the debug statement body can be anything
}
}