about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-tryeval.nix
{
  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");
}