mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
159 B
Nim
12 lines
159 B
Nim
discard """
|
|
cmd: "nim $target $options --legacy:laxEffects $file"
|
|
"""
|
|
|
|
|
|
type
|
|
Foo = object
|
|
bar: seq[Foo]
|
|
|
|
proc `==`(a, b: Foo): bool =
|
|
a.bar == b.bar
|