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]
s='oid'>4077f7d49 ^
2b4922aea ^



21e22624a ^




























1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77