about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-group-by-propagate-catchable.nix
blob: 182601abb18cd0b14c92e2bf8c87503b5aa92a7e (plain) (blame)
1
2
3
4
5
map (e: (builtins.tryEval e).success) [
  (builtins.groupBy (builtins.throw "a") [ "" ])
  (builtins.groupBy (x: true) (builtins.throw "b"))
  (builtins.groupBy (_: builtins.throw "x") [ "" ])
]