summary refs log blame commit diff stats
path: root/tests/tuples/mnimsconstunpack.nim
blob: 65fafc12f83adab82e1c884ab97188aa0b662645 (plain) (tree)
1
2
3
4



                                 
proc foo(): tuple[a, b: string] =
  result = ("a", "b")

const (a, b*) = foo()