Fix issue 497: insert space before function/delegate in function type that returns template instantiated with parenless value argument

This commit is contained in:
Mathis Beer 2020-07-17 14:14:17 +02:00
parent d92a6799ac
commit 4dd05031ec
4 changed files with 18 additions and 1 deletions

View File

@ -211,7 +211,9 @@ private:
{
immutable t = tokens[index].type;
if (t == tok!"identifier" || isStringLiteral(t)
|| isNumberLiteral(t) || t == tok!"characterLiteral")
|| isNumberLiteral(t) || t == tok!"characterLiteral"
// a!"b" function()
|| t == tok!"function" || t == tok!"delegate")
write(" ");
}
}

View File

@ -0,0 +1,5 @@
alias f1 = S function();
alias f2 = S!"foo" function();
alias f3 = S!5 function();
alias f4 = S!S function();
alias f5 = S!(S) function();

5
tests/issue0497.d Normal file
View File

@ -0,0 +1,5 @@
alias f1 = S function();
alias f2 = S!"foo" function();
alias f3 = S!5 function();
alias f4 = S!S function();
alias f5 = S!(S) function();

View File

@ -0,0 +1,5 @@
alias f1 = S function();
alias f2 = S!"foo" function();
alias f3 = S!5 function();
alias f4 = S!S function();
alias f5 = S!(S) function();