diff options
author | Ayke van Laethem <[email protected]> | 2018-11-15 11:50:47 +0100 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-11-15 11:51:16 +0100 |
commit | 668c1741c3d290ed63ff8270acde62f5ac4004ab (patch) | |
tree | 418caec4b8500fe2ba205082ffb963a2757d7564 /testdata/binop.txt | |
parent | 6292a0fd2ebd0f2db486fb48d4e161ba95fdc9a5 (diff) | |
download | tinygo-668c1741c3d290ed63ff8270acde62f5ac4004ab.tar.gz tinygo-668c1741c3d290ed63ff8270acde62f5ac4004ab.zip |
compiler: implement array equality
Implement binops == and != on array types.
Diffstat (limited to 'testdata/binop.txt')
-rw-r--r-- | testdata/binop.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testdata/binop.txt b/testdata/binop.txt index 1e2f40e70..72e67198a 100644 --- a/testdata/binop.txt +++ b/testdata/binop.txt @@ -20,6 +20,13 @@ true false false true +array equality +true +false +false +false +false +true struct equality true false |