tassignemptytuple.nim 200 B

123456789101112
  1. discard """
  2. errormsg: "cannot infer the type of the tuple"
  3. file: "tassignemptytuple.nim"
  4. line: 11
  5. """
  6. var
  7. foo: seq[int]
  8. bar: tuple[a: seq[int], b: set[char]]
  9. (foo, bar) = (@[], (@[], {}))