diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-12T11·23+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-12T11·23+0000 |
commit | 81a4b4e49bf82f17eef20d78c4f505874cf5532e (patch) | |
tree | e5fa0c53c248cc341b964332911f4a44be4a0127 /tests/lang/eval-okay-tryeval.nix | |
parent | 1a8eb6e3ec9329ee7b61ac2345c6e1d994905813 (diff) |
* Implemented tryEval, the last missing primop in the fast-eval
branch. Also added a test for tryEval.
Diffstat (limited to 'tests/lang/eval-okay-tryeval.nix')
-rw-r--r-- | tests/lang/eval-okay-tryeval.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-tryeval.nix b/tests/lang/eval-okay-tryeval.nix new file mode 100644 index 000000000000..629bc440a85a --- /dev/null +++ b/tests/lang/eval-okay-tryeval.nix @@ -0,0 +1,5 @@ +{ + x = builtins.tryEval "x"; + y = builtins.tryEval (assert false; "y"); + z = builtins.tryEval (throw "bla"); +} |