updated for version 7.1a
diff --git a/src/testdir/test55.in b/src/testdir/test55.in
index d7cd4d9..b20c6c4 100644
--- a/src/testdir/test55.in
+++ b/src/testdir/test55.in
@@ -334,6 +334,14 @@
:$put =string(split('abc', '\zs'))
:$put =string(split('abc', '\zs', 1))
:"
+:" compare recursively linked list and dict
+:let l = [1, 2, 3, 4]
+:let d = {'1': 1, '2': l, '3': 3}
+:let l[1] = d
+:$put =(l == l)
+:$put =(d == d)
+:$put =(l != deepcopy(l))
+:$put =(d != deepcopy(d))
:endfun
:call Test(1, 2, [3, 4], {5: 6}) " This may take a while
:"