This commit is contained in:
Ganesh Viswanathan
2018-09-14 18:51:05 -05:00
parent 31860f560e
commit b966945ab2

View File

@@ -0,0 +1,19 @@
discard """
exitcode: 0
output: '''assingment
assingment
'''
"""
type
Foo* = object
boo: int
proc `=`(dest: var Foo, src: Foo) =
debugEcho "assingment"
proc test(): auto =
var a,b : Foo
return (a, b)
var (a, b) = test()