diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index de203d2..91b0caf 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -295,7 +295,7 @@ private: { break; } - else if ((t == tok!"import" && !currentIs(tok!"import"))) + else if ((t == tok!"import" && !currentIs(tok!"import") && !currentIs(tok!"}"))) { write("\n"); currentLineLength = 0; diff --git a/tests/allman/issue0114.d.ref b/tests/allman/issue0114.d.ref new file mode 100644 index 0000000..3a516e8 --- /dev/null +++ b/tests/allman/issue0114.d.ref @@ -0,0 +1,5 @@ +private +{ + import std.process; + import std.c.windows.windows; +} diff --git a/tests/issue0114.d b/tests/issue0114.d new file mode 100644 index 0000000..adc81eb --- /dev/null +++ b/tests/issue0114.d @@ -0,0 +1,5 @@ +private +{ + import std.process; + import std.c.windows.windows; +} diff --git a/tests/otbs/issue0114.d.ref b/tests/otbs/issue0114.d.ref new file mode 100644 index 0000000..ae34f97 --- /dev/null +++ b/tests/otbs/issue0114.d.ref @@ -0,0 +1,4 @@ +private { + import std.process; + import std.c.windows.windows; +}