about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix
let {
attrs = { x = 123; y = 456; };

body = (removeAttrs attrs [ "x" ]).y;
}