From 71be50cc25544f742db2275b4621b92c4e938400 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Mar 2010 14:51:32 +0000 Subject: * Doh. --- tests/lang/eval-okay-with.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tests/lang/eval-okay-with.nix') diff --git a/tests/lang/eval-okay-with.nix b/tests/lang/eval-okay-with.nix index ea4ea612dec3..033e8d3aba57 100644 --- a/tests/lang/eval-okay-with.nix +++ b/tests/lang/eval-okay-with.nix @@ -7,7 +7,13 @@ let { b = "bar"; }; + bs = { + a = "bar"; + }; + x = with as; a + b; - body = x; + y = with as; with bs; a + b; + + body = x + y; } -- cgit 1.4.1