Paul King created GROOVY-10502:
----------------------------------
Summary: NamedVariant: improve consistency of default value
treatment
Key: GROOVY-10502
URL: https://issues.apache.org/jira/browse/GROOVY-10502
Project: Groovy
Issue Type: Bug
Affects Versions: 2.5.16, 3.0.10, 4.0.0
Reporter: Eric Milles
Assignee: Eric Milles
Fix For: 2.5.16, 3.0.10, 5.0.0-alpha-1, 4.0.1
Consider the following:
{code:groovy}
@groovy.transform.NamedVariant
def m(int one, int two = 42) {
"$one $two"
}
String result = m(one:0, two:0)
assert result == '0 0' // fails
{code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)