mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
16 lines
159 B
Nim
16 lines
159 B
Nim
discard """
|
|
output: '''true
|
|
true'''
|
|
"""
|
|
|
|
# bug #2489
|
|
|
|
let a = [1]
|
|
let b = [1]
|
|
echo a == b
|
|
|
|
# bug #2498
|
|
var x: array[0, int]
|
|
var y: array[0, int]
|
|
echo x == y
|