You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Dmitry Bobrov (JIRA)" <ji...@apache.org> on 2016/12/29 12:39:58 UTC

[jira] [Created] (GROOVY-8029) Static compilation fails when using collectMany and elvis operator

Dmitry Bobrov created GROOVY-8029:
-------------------------------------

             Summary: Static compilation fails when using collectMany and elvis operator
                 Key: GROOVY-8029
                 URL: https://issues.apache.org/jira/browse/GROOVY-8029
             Project: Groovy
          Issue Type: Bug
          Components: Static Type Checker
    Affects Versions: 2.4.7
            Reporter: Dmitry Bobrov
            Priority: Minor


The following code, when used with {{\@CompileStatic}}, produces {{Groovyc: [Static type checking] - Cannot call <T,E> java.util.List <Object>#collectMany(groovy.lang.Closure <java.util.Collection>) with arguments [groovy.lang.Closure <java.util.List>]}}

{code:groovy}
List<String> getStrings(List<Object> l) {
    l.collectMany { [it.toString()] } ?: ([] as List<String>)
}
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)