about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-tryeval.nix
blob: e2357c798753a12d19f35aface5a1acb567adf72 (plain) (blame)
1
2
3
4
5
6
7
{
  v = (builtins.tryEval (toString <oink>)).value;
  w = builtins.tryEval <nope>;
  x = builtins.tryEval "x";
  y = builtins.tryEval (assert false; "y");
  z = builtins.tryEval (throw "bla");
}