Daniel Sun created GROOVY-9484:
----------------------------------

             Summary: Closure on the next line should not be treated as argument
                 Key: GROOVY-9484
                 URL: https://issues.apache.org/jira/browse/GROOVY-9484
             Project: Groovy
          Issue Type: Bug
            Reporter: Daniel Sun


in groovy 2.5
{code:java}
 modification                                | expected
 { Instant i, ZoneId z -> i.plusSeconds(1) } | defaultInstant.plusSeconds(1)
{code}

these were treated as separate expressions
in groovy 3.0 the closure gets merged as argument to the expected above.
{code:java}
 modification | this.expected({ Instant i, ZoneId z ->
            i.plusSeconds(1)
        }) | defaultInstant.plusSeconds(1)
{code}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to