This commit is contained in:
Hackerpilot 2015-03-10 14:33:27 -07:00
parent b07ecacb91
commit 66342a99ee
3 changed files with 13 additions and 1 deletions

View File

@ -474,7 +474,7 @@ private:
case tok!";":
if (peekIs(tok!"else") && ifIndents.length)
tempIndent = ifIndents.top();
else if (!peekIs(tok!"}"))
else if (!peekIs(tok!"}") || peekIs(tok!"comment", false))
{
if (ifIndents.length)
{

6
tests/issue0089.d Normal file
View File

@ -0,0 +1,6 @@
unittest
{
if (x)
doSomething();
//doSomethingElse();
}

6
tests/issue0089.d.ref Normal file
View File

@ -0,0 +1,6 @@
unittest
{
if (x)
doSomething();
//doSomethingElse();
}