You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2022/02/27 14:13:00 UTC

[jira] [Updated] (GROOVY-10072) SC: closure with default argument(s)

     [ https://issues.apache.org/jira/browse/GROOVY-10072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Milles updated GROOVY-10072:
---------------------------------
    Fix Version/s: 3.0.10

> SC: closure with default argument(s)
> ------------------------------------
>
>                 Key: GROOVY-10072
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10072
>             Project: Groovy
>          Issue Type: Bug
>          Components: Static compilation, Static Type Checker
>    Affects Versions: 2.5.14, 3.0.8, 4.0.0-alpha-3
>            Reporter: Eric Milles
>            Assignee: Eric Milles
>            Priority: Major
>             Fix For: 4.0.0-beta-1, 3.0.10
>
>
> Consider the following:
> {code:groovy}
> @groovy.transform.CompileStatic
> void test() {
>   def c = { p = 'foo' -> return p }
>   assert c('bar') == 'bar'
>   assert c() == 'foo'
>   c = { p, q = 'baz' -> return '' + p + q }
>   assert c('foo', 'bar') == 'foobar'
>   assert c('foo') == 'foobaz'
> }
> test()
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)