summary refs log tree commit diff stats
path: root/tests/tuples
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tuples')
-rw-r--r--tests/tuples/tconver_tuple.nim4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/tuples/tconver_tuple.nim b/tests/tuples/tconver_tuple.nim
index b37be968a..306da77fe 100644
--- a/tests/tuples/tconver_tuple.nim
+++ b/tests/tuples/tconver_tuple.nim
@@ -17,3 +17,7 @@ var bar = (
   strings: @[],
   ints: @[],
 ).MyTuple
+
+var fooUnnamed = MyTuple((7, @[], @[]))
+var n = 7
+var fooSym = MyTuple((num: n, strings: @[], ints: @[]))