about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-type-of-propagate-catchable.nix
blob: 4b70609bbf3c92808e86b7328e2348bf62c9be42 (plain) (blame)
1
2
3
4
5
6
7
8
9
map (e: (builtins.tryEval (builtins.typeOf e)).success) [
  (builtins.throw "a")
  {
    a = builtins.throw "b";
  }
  [ (builtins.throw "c") ]
  (./xyz + (builtins.throw "p"))
  # FIXME: test derivations and files.
]