about summary refs log blame commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-to-string-propagate-catchable.nix
blob: 7b19ff53c360b11de25f2aaef75578a710a34f23 (plain) (tree)
1
2
3
4
5
6
7






                                                           
map (e: (builtins.tryEval (builtins.toString e)).success) [
  (builtins.throw "a")
  [ (builtins.throw "a") ]
  [ "abc" (builtins.throw "a") ]
  "abc${builtins.throw "c"}"
  # FIXME: test derivations and files.
]