about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-fail-remove.nix
blob: 93dd8ccd45dc0cb85c981e19650b2e0b1c524074 (plain) (blame)
1
2
3
4
5
let {
attrs = { x = 123; y = 456; };

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