Fix #287 - Extra space after import in delegate

This commit is contained in:
Laurent Tréguier 2018-10-08 16:08:23 +02:00 committed by The Dlang Bot
parent 3917c32925
commit 6ad2fbb6fc
4 changed files with 9 additions and 1 deletions

View File

@ -1444,7 +1444,6 @@ private:
&& !assumeSorted(astInformation.funLitEndLocations).equalRange( && !assumeSorted(astInformation.funLitEndLocations).equalRange(
tokens[index].index).empty) tokens[index].index).empty)
{ {
write(" ");
return; return;
} }

View File

@ -0,0 +1,3 @@
alias foo = typeof({ import std.math; });
alias bar = typeof({ write("aaa"); });
alias baz = typeof({ });

3
tests/issue0287.d Normal file
View File

@ -0,0 +1,3 @@
alias foo = typeof({import std.math;});
alias bar = typeof({write("aaa");});
alias baz = typeof({});

View File

@ -0,0 +1,3 @@
alias foo = typeof({ import std.math; });
alias bar = typeof({ write("aaa"); });
alias baz = typeof({ });