aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-okay-scope-4.nix
blob: c1e4e66839c712c57e4a65dec216a109e8f8198a (plain)
1
2
3
4
5
6
7
let
  x = "a";
  y = "b";

  f = {x ? y, y ? x}: x + y;
in
f {x = "c";} + f {y = "d";}