Files
Nim/tests/effects/tlaxeffects.nim
2022-11-04 12:43:32 +08:00

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