changeset 114:4107207b761d

built-ins: cover in-place list evaluation for fun
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 29 Aug 2019 22:48:04 +0200
parents 41dea7ad4ff7
children 1d1f29d0954d
files src/built-ins_test.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/built-ins_test.c	Thu Aug 29 22:47:46 2019 +0200
+++ b/src/built-ins_test.c	Thu Aug 29 22:48:04 2019 +0200
@@ -216,7 +216,7 @@
     fprintf(stderr, "test_builtin_let_recall ============\n");
 
     ystr_t input = ystr_new(
-            "(let my-var (1 2 3))"
+            "(let my-var ('a 'b) (1 2 3))"
             "(my-var)");
     ystr_t error = ystr_new(NULL);
     yexpr_t program = yexpr_new(), *let_expr;