nix-gh/tests/lang/eval-okay-remove.nix

5 lines
77 B
Nix

let {
attrs = {x = 123; y = 456;};
body = (removeAttrs attrs ["x"]).y;
}