about summary refs log tree commit diff
path: root/tests/lang/eval-okay-attrs.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-03-01T16·26+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-03-01T16·26+0000
commitfa95f4be3f4df6ebe4d49ec57a66129f645e36c7 (patch)
tree28aa16b4345f8bf7d802940cf805811321507990 /tests/lang/eval-okay-attrs.nix
parent80b5c7168436d4fa34952c2d7d8c26d9894afe3e (diff)
* More test coverage.
Diffstat (limited to 'tests/lang/eval-okay-attrs.nix')
-rw-r--r--tests/lang/eval-okay-attrs.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-attrs.nix b/tests/lang/eval-okay-attrs.nix
new file mode 100644
index 0000000000..810b31a5da
--- /dev/null
+++ b/tests/lang/eval-okay-attrs.nix
@@ -0,0 +1,5 @@
+let {
+  as = { x = 123; y = 456; } // { z = 789; } // { z = 987; };
+
+  body = if as ? a then as.a else assert as ? z; as.z;
+}