summary refs log tree commit diff stats
path: root/tests/assign/tgenericassign.nim
Commit message (Expand)AuthorAgeFilesLines
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-1/+1
* new tester; all tests categorizedAraq2014-01-131-0/+24
ng/Nim/blame/tests/types/tassignemptytuple.nim?h=devel&id=ca394ebd9514edd6e5f5e5c3d3145aa868744647'>^
d05e146b3 ^

d05e146b3 ^






1
2
3
4
5
6
7
8
9
10
11
           
                                                

                               






                                       
discard """
  errormsg: "cannot infer the type of the tuple"
  file: "tassignemptytuple.nim"
  line: 11
"""

var
  foo: seq[int]
  bar: tuple[a: seq[int], b: set[char]]

(foo, bar) = (@[], (@[], {}))