diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 93abaa3..a26cc9f 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -943,6 +943,11 @@ private: newline(); } break; + case tok!"body": + if (!peekBackIs(tok!"}")) + newline(); + writeToken(); + break; case tok!"in": immutable isContract = astInformation.contractLocations.canFindIndex(current.index); if (isContract) diff --git a/tests/allman/issue0241.d.ref b/tests/allman/issue0241.d.ref new file mode 100644 index 0000000..212a726 --- /dev/null +++ b/tests/allman/issue0241.d.ref @@ -0,0 +1,4 @@ +void round() +body +{ +} diff --git a/tests/issue0241.d b/tests/issue0241.d new file mode 100644 index 0000000..212a726 --- /dev/null +++ b/tests/issue0241.d @@ -0,0 +1,4 @@ +void round() +body +{ +} diff --git a/tests/otbs/issue0241.d.ref b/tests/otbs/issue0241.d.ref new file mode 100644 index 0000000..d7576cb --- /dev/null +++ b/tests/otbs/issue0241.d.ref @@ -0,0 +1,3 @@ +void round() +body { +}