You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniel Sun (JIRA)" <ji...@apache.org> on 2018/05/14 10:58:00 UTC

[jira] [Resolved] (GROOVY-7753) regression of return type from ternary operator

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

Daniel Sun resolved GROOVY-7753.
--------------------------------
       Resolution: Fixed
         Assignee: Daniel Sun
    Fix Version/s: 2.5.0-rc-3
                   3.0.0-alpha-3
                   2.6.0-alpha-4

Fixed by https://github.com/apache/groovy/commit/d88dfe679d1cd958c29acaf64b7d7631c041e194

Current solution can infer the return type properly, but has a limitation: `return` is required.

I will file a new JIRA issue.

> regression of return type from ternary operator
> -----------------------------------------------
>
>                 Key: GROOVY-7753
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7753
>             Project: Groovy
>          Issue Type: Bug
>          Components: Static compilation, Static Type Checker
>    Affects Versions: 2.4.6
>            Reporter: Jason Winnebeck
>            Assignee: Daniel Sun
>            Priority: Major
>             Fix For: 2.6.0-alpha-4, 3.0.0-alpha-3, 2.5.0-rc-3
>
>
> In Groovy 2.4.5 the following code works, but in Groovy 2.4.6, it fails to compile:
> {code}
> @groovy.transform.Field
> String x = "X"
> @groovy.transform.CompileStatic
> public List<String> getStrings() {
> 	x ? [x] : Collections.emptyList()
> }
> getStrings()
> {code}
> In Groovy 2.4.6 the compile error is:
> {code}
> [Static type checking] - Incompatible generic argument types. Cannot assign java.util.List <? extends java.lang.Object> to: java.util.List <String>
>  @ line 6, column 2.
>     x ? [x] : Collections.emptyList()
>     ^
> {code}
> Workaround is to cast the result of emptyList to the erased type, (List) in this case.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)