You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2015/06/09 12:50:07 UTC

[jira] [Commented] (GROOVY-5185) Cast operator precedence is incorrect

    [ https://issues.apache.org/jira/browse/GROOVY-5185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14578714#comment-14578714 ] 

Paul King commented on GROOVY-5185:
-----------------------------------

Is this a duplicate of GROOVY-4421?

> Cast operator precedence is incorrect
> -------------------------------------
>
>                 Key: GROOVY-5185
>                 URL: https://issues.apache.org/jira/browse/GROOVY-5185
>             Project: Groovy
>          Issue Type: Sub-task
>          Components: groovy-runtime
>    Affects Versions: 1.8.4
>            Reporter: Cédric Champeau
>
> The cast operator precedence is incorrect:
> {code}
> def i = (int)1/(int)2
> assert i.class==BigDecimal // fails
> {code}
> To have proper casts, we need extra parenthesis which should not be necessary:
> {code}
> def i = ((int)1)/((int)2)
> assert i.class==BigDecimal // ok
> {code}



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