1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/lang/eval-okay-scope-3.nix

7 lines
82 B
Nix
Raw Normal View History

((x: as: {x}:
rec {
inherit (as) x;
y = x;
}
) 2 {x = 4;} {x = 3;}).y