about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/notyetpassing/eval-fail-builtins-genericClosure-uncomparable-keys.nix
# Attribute sets can't be compared, only checked for equality
builtins.genericClosure {
  startSet = [
    { key = { foo = 21; }; }
  ];
  operator = _: [
    { key = { bar = 21; }; }
  ];
}