about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-gen-list-propagate-catchable.nix
blob: 3d4739966ee3e0c66fc6ac57cec5a60436fff45f (plain) (blame)
1
2
3
4
5
map (e: (builtins.tryEval e).success) [
  (builtins.genList (builtins.throw "a") 10)
  (builtins.genList (i: "") (builtins.throw "b"))
  (builtins.genList (i: builtins.throw "x") 5)
]