about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-function-args-propagate-catchable.nix
blob: ca3e6772f28daa206cb0b3f2310af99deba1eb7f (plain) (blame)
1
2
3
4
map (e: (builtins.tryEval e).success) [
  (builtins.functionArgs (_: builtins.throw "a"))
  (builtins.functionArgs (builtins.throw "b"))
]