Fix #287 - Extra space after import in delegate
This commit is contained in:
parent
3917c32925
commit
6ad2fbb6fc
|
@ -1444,7 +1444,6 @@ private:
|
||||||
&& !assumeSorted(astInformation.funLitEndLocations).equalRange(
|
&& !assumeSorted(astInformation.funLitEndLocations).equalRange(
|
||||||
tokens[index].index).empty)
|
tokens[index].index).empty)
|
||||||
{
|
{
|
||||||
write(" ");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
alias foo = typeof({ import std.math; });
|
||||||
|
alias bar = typeof({ write("aaa"); });
|
||||||
|
alias baz = typeof({ });
|
|
@ -0,0 +1,3 @@
|
||||||
|
alias foo = typeof({import std.math;});
|
||||||
|
alias bar = typeof({write("aaa");});
|
||||||
|
alias baz = typeof({});
|
|
@ -0,0 +1,3 @@
|
||||||
|
alias foo = typeof({ import std.math; });
|
||||||
|
alias bar = typeof({ write("aaa"); });
|
||||||
|
alias baz = typeof({ });
|
Loading…
Reference in New Issue