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/23 07:41:00 UTC

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

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

Paul King reassigned GROOVY-5185:
---------------------------------

    Assignee: Paul King

> 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
>            Assignee: Paul King
>
> 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)