summary refs log tree commit diff stats
path: root/tests/varres/tvartup.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/varres/tvartup.nim')
-rw-r--r--tests/varres/tvartup.nim3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/varres/tvartup.nim b/tests/varres/tvartup.nim
index 1957a3e35..a8f15b232 100644
--- a/tests/varres/tvartup.nim
+++ b/tests/varres/tvartup.nim
@@ -1,5 +1,4 @@
 discard """
-  file: "tvartup.nim"
   output: "2 3"
 """
 # Test the new tuple unpacking
@@ -9,5 +8,3 @@ proc divmod(a, b: int): tuple[di, mo: int] =
 
 var (x, y) = divmod(15, 6)
 echo x, " ", y
-
-#OUT 2 3