blob: 3ebb006c3f0d0e9c6174cfce899eeb2a14a4414e (
plain) (
blame)
1
2
3
4
5
|
map (e: (builtins.tryEval e).success) [
(builtins.map (builtins.throw "a") [ "" ])
(builtins.map (x: true) (builtins.throw "b"))
(builtins.map (_: builtins.throw "x") [ "" ])
]
|