]> gitweb.factorcode.org Git - factor.git/blobdiff - core/memory/memory-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / core / memory / memory-tests.factor
index 4e858f3b39076f78be6d833d9a09f3efed53ce41..1a3b8f1111d0b40f450e7753c0305518f7deb93e 100644 (file)
@@ -110,7 +110,7 @@ TUPLE: tup2 a b c d ;
     drop 2097103 <byte-array> ;
 
 : outer ( -- lag )
-    9 iota [ inner ] map
+    9 <iota> [ inner ] map
     ! D 0 is scrubbed, but if the branch calling 'inner' was
     ! called, then both D 0 and D 1 should have been scrubbed.
     0 9 1 tup2 boa ;