This commit is contained in:
Hackerpilot 2015-04-08 18:16:50 -07:00
parent e233912a34
commit aec084e23e
4 changed files with 30 additions and 0 deletions

View File

@ -657,6 +657,16 @@ private:
case tok!"cast": case tok!"cast":
writeToken(); writeToken();
break; break;
case tok!"try":
if (peekIs(tok!"{"))
writeToken();
else
{
writeToken();
indents.push(tok!"try");
newline();
}
break;
case tok!"in": case tok!"in":
case tok!"is": case tok!"is":
writeToken(); writeToken();

View File

@ -0,0 +1,7 @@
unittest
{
try
doStuff();
catch (Exception ex)
complain(ex.msg);
}

7
tests/issue0126.d Normal file
View File

@ -0,0 +1,7 @@
unittest
{
try
doStuff();
catch (Exception ex)
complain(ex.msg);
}

View File

@ -0,0 +1,6 @@
unittest {
try
doStuff();
catch (Exception ex)
complain(ex.msg);
}