1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/lang/eval-fail-toJSON.nix
2023-07-31 13:02:54 +02:00

11 lines
112 B
Nix

builtins.toJSON {
a.b = [
true
false
"it's a bird"
{
c.d = throw "hah no";
}
];
}