aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-fail-toJSON.nix
blob: 8112e1c1f2fb24e2ebb82cd9085979814cb5575e (plain)
1
2
3
4
5
6
7
8
9
10
builtins.toJSON {
  a.b = [
    true
    false
    "it's a bird"
    {
      c.d = throw "hah no";
    }
  ];
}