aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lang/eval-okay-with.exp20
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-with.exp b/tests/lang/eval-okay-with.exp
index 31e24293b..033e8d3ab 100644
--- a/tests/lang/eval-okay-with.exp
+++ b/tests/lang/eval-okay-with.exp
@@ -1 +1,19 @@
-Str("xyzzybar",[])
+let {
+
+ a = "xyzzy";
+
+ as = {
+ a = "foo";
+ b = "bar";
+ };
+
+ bs = {
+ a = "bar";
+ };
+
+ x = with as; a + b;
+
+ y = with as; with bs; a + b;
+
+ body = x + y;
+}