t7346.nim 194 B

12345678910
  1. when not defined(nimNewRuntime):
  2. {.error: "This bug could only be reproduced with --newruntime".}
  3. type
  4. Obj = object
  5. a: int
  6. proc `=`(a: var Obj, b: Obj) = discard
  7. let a: seq[Obj] = @[]