Richard Zhang created GROOVY-8195:
-------------------------------------

             Summary: CompileStatic fails to infer correct type when using 
elvis operator
                 Key: GROOVY-8195
                 URL: https://issues.apache.org/jira/browse/GROOVY-8195
             Project: Groovy
          Issue Type: Bug
    Affects Versions: 2.4.9
            Reporter: Richard Zhang


see the following example:

{code}
import groovy.transform.CompileStatic


@CompileStatic
def foo() {
    Map<String, String> strongMap
    Map<String, String> elvisMap = strongMap ?: [:] // won't compile
    Map<String, String> initStrongMap = [:] // compiles ok
}

{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to