diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index b2fe94f..ca39597 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1444,7 +1444,6 @@ private: && !assumeSorted(astInformation.funLitEndLocations).equalRange( tokens[index].index).empty) { - write(" "); return; } diff --git a/tests/allman/issue0287.d.ref b/tests/allman/issue0287.d.ref new file mode 100644 index 0000000..461addf --- /dev/null +++ b/tests/allman/issue0287.d.ref @@ -0,0 +1,3 @@ +alias foo = typeof({ import std.math; }); +alias bar = typeof({ write("aaa"); }); +alias baz = typeof({ }); diff --git a/tests/issue0287.d b/tests/issue0287.d new file mode 100644 index 0000000..8f22698 --- /dev/null +++ b/tests/issue0287.d @@ -0,0 +1,3 @@ +alias foo = typeof({import std.math;}); +alias bar = typeof({write("aaa");}); +alias baz = typeof({}); diff --git a/tests/otbs/issue0287.d.ref b/tests/otbs/issue0287.d.ref new file mode 100644 index 0000000..461addf --- /dev/null +++ b/tests/otbs/issue0287.d.ref @@ -0,0 +1,3 @@ +alias foo = typeof({ import std.math; }); +alias bar = typeof({ write("aaa"); }); +alias baz = typeof({ });