This commit is contained in:
Hackerpilot 2016-01-14 14:40:16 -08:00
parent 86b61ce2fc
commit 3e5307f081
4 changed files with 25 additions and 0 deletions

View File

@ -380,6 +380,8 @@ private:
{
break;
}
else if (currentIs(tok!"{") && config.dfmt_brace_style == BraceStyle.allman)
break;
else if (t == tok!"import" && !currentIs(tok!"import")
&& !currentIs(tok!"}") && !(currentIs(tok!"public")
&& peekIs(tok!"import")))

View File

@ -0,0 +1,8 @@
unittest
{
import std.stdio : stderr;
{
a = 10;
}
}

8
tests/issue0206.d Normal file
View File

@ -0,0 +1,8 @@
unittest
{
import std.stdio : stderr;
{
a = 10;
}
}

View File

@ -0,0 +1,7 @@
unittest {
import std.stdio : stderr;
{
a = 10;
}
}