about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-to-path-propagate-catchable.nix
blob: 808fb8c46ef32b0e4c74ad656ba7e02f485cee03 (plain) (blame)
1
2
3
4
5
map (e: (builtins.tryEval (builtins.toPath e)).success) [
  (builtins.throw "a")
  (./xyz + (builtins.throw "p"))
  # FIXME: test derivations and files.
]