Fix #206
This commit is contained in:
parent
86b61ce2fc
commit
3e5307f081
|
@ -380,6 +380,8 @@ private:
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
else if (currentIs(tok!"{") && config.dfmt_brace_style == BraceStyle.allman)
|
||||||
|
break;
|
||||||
else if (t == tok!"import" && !currentIs(tok!"import")
|
else if (t == tok!"import" && !currentIs(tok!"import")
|
||||||
&& !currentIs(tok!"}") && !(currentIs(tok!"public")
|
&& !currentIs(tok!"}") && !(currentIs(tok!"public")
|
||||||
&& peekIs(tok!"import")))
|
&& peekIs(tok!"import")))
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
import std.stdio : stderr;
|
||||||
|
|
||||||
|
{
|
||||||
|
a = 10;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
import std.stdio : stderr;
|
||||||
|
|
||||||
|
{
|
||||||
|
a = 10;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest {
|
||||||
|
import std.stdio : stderr;
|
||||||
|
|
||||||
|
{
|
||||||
|
a = 10;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue