Remove duplicate

This commit is contained in:
Ganesh Viswanathan
2018-09-16 05:44:37 -05:00
parent e4fa1c81cb
commit 9b4305c359

View File

@@ -1,19 +0,0 @@
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()