summary refs log tree commit diff stats
path: root/tests/effects/tlaxeffects.nim
blob: 7eedc372a61523e171481f505d34b209b1a5154a (plain) (blame)
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