summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2018-09-16 05:44:37 -0500
committerGanesh Viswanathan <dev@genotrance.com>2018-09-16 05:44:37 -0500
commit9b4305c359ecdda3c7d0e13a320db76f9a2c7629 (patch)
treec0200662b4a087bcf64ed6934aa125d4fd18ecda
parente4fa1c81cb555a726fa79133bb20e938e8c68b02 (diff)
downloadNim-9b4305c359ecdda3c7d0e13a320db76f9a2c7629.tar.gz
Remove duplicate
-rw-r--r--tests/overload/t6434.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/overload/t6434.nim b/tests/overload/t6434.nim
deleted file mode 100644
index 1657e90bc..000000000
--- a/tests/overload/t6434.nim
+++ /dev/null
@@ -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()
\ No newline at end of file