summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2020-03-22 19:35:55 +0100
committerGitHub <noreply@github.com>2020-03-22 19:35:55 +0100
commit047d3af6daf73c378677f2cb3d5dbde80c35f790 (patch)
tree7f90c3dd0e0dc66b7831003e1730ba6dce1f1c3b /tests
parent86b9435138109441ffaa5a9c221f641ec3ed4b05 (diff)
downloadNim-047d3af6daf73c378677f2cb3d5dbde80c35f790.tar.gz
fix #13720 (#13721)
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]