1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/tests/lang/eval-fail-toJSON.nix

11 lines
112 B
Nix
Raw Normal View History

2023-06-29 19:29:11 -04:00
builtins.toJSON {
a.b = [
true
false
"it's a bird"
{
c.d = throw "hah no";
}
];
}