about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-tojson-outpath-nested.nix
blob: 70755c8c6dbea2e7c494cccadfc494776c7a127b (plain) (blame)
1
2
3
4
5
6
7
8
# Attribute sets with an `outPath` can contain _any_ serialisable
# value in that field.
builtins.toJSON {
  outPath = {
    a = 40;
    b = 2;
  };
}