summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/types/tillegaltuplerecursion.nim4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/types/tillegaltuplerecursion.nim b/tests/types/tillegaltuplerecursion.nim
index c822e8880..cb75ad9c3 100644
--- a/tests/types/tillegaltuplerecursion.nim
+++ b/tests/types/tillegaltuplerecursion.nim
@@ -35,4 +35,6 @@ type
     children: ptr MyType9
 
   MyType9 = tuple
-    children: MyType0
+    children: MyType10
+
+  MyType10 = distinct seq[MyType0]