t6279.nim 231 B

12345678910
  1. discard """
  2. cmd: "nim c -r -d:fulldebug -d:smokeCycles --gc:refc $file"
  3. output: '''@["a"]'''
  4. """
  5. # bug #6279
  6. var foo = newSeq[tuple[a: seq[string], b: seq[string]]]()
  7. foo.add((@["a"], @["b"]))
  8. echo foo[0].a # Crashes on this line