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 2016/10/30 10:54:58 UTC

[jira] [Updated] (GROOVY-7983) An issue about comparing arrays

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

Daniel.Sun updated GROOVY-7983:
-------------------------------
    Description: 
{code}
def a = new int[2][]
def b = new int[2][][]
assert a == b // expect faling
assert a.class != b.class
{code}



  was:
{code:groovy}
def a = new int[2][]
def b = new int[2][][]
assert a == b // expect faling
assert a.class != b.class
{code}




> An issue about comparing arrays
> -------------------------------
>
>                 Key: GROOVY-7983
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7983
>             Project: Groovy
>          Issue Type: Bug
>            Reporter: Daniel.Sun
>
> {code}
> def a = new int[2][]
> def b = new int[2][][]
> assert a == b // expect faling
> assert a.class != b.class
> {code}



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