[
https://issues.apache.org/jira/browse/GROOVY-8845?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Eric Milles updated GROOVY-8845:
--------------------------------
Labels: varargs (was: )
> @DelegatesTo works only for the first vararg
> --------------------------------------------
>
> Key: GROOVY-8845
> URL: https://issues.apache.org/jira/browse/GROOVY-8845
> Project: Groovy
> Issue Type: Bug
> Components: Static Type Checker
> Affects Versions: 2.5.3
> Reporter: Daniil Ovchinnikov
> Priority: Major
> Labels: varargs
>
> {code:groovy}
> def md(@DelegatesTo.Target Object target, @DelegatesTo(strategy =
> Closure.DELEGATE_FIRST) Closure... arg) {
> for (Closure a : arg) {
> a.delegate = target
> a.resolveStrategy = Closure.DELEGATE_FIRST
> a()
> }
> }
> class D {
> def foo() { 42 }
> }
> @groovy.transform.CompileStatic
> def test() {
> md(
> new D(),
> { print(foo()) },
> // { print(foo()) }, // [Static type checking] - Cannot find matching
> method ConsoleScript15#foo()
> // { print(foo()) }, // [Static type checking] - Cannot find matching
> method ConsoleScript15#foo()
> )
> }
> test()
> {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)