1 2 3 4 5 6 7 8 9 10 11
discard """ cmd: "nim $target $options --legacy:laxEffects $file" """ type Foo = object bar: seq[Foo] proc `==`(a, b: Foo): bool = a.bar == b.bar