about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-tojson-outpath-nested.nix
# Attribute sets with an `outPath` can contain _any_ serialisable
# value in that field.
builtins.toJSON {
  outPath = {
    a = 40;
    b = 2;
  };
}