mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
463e2817c5
* Add automated Nix expression language tests.
7 lines
82 B
Nix
7 lines
82 B
Nix
((x: as: {x}:
|
|
rec {
|
|
inherit (as) x;
|
|
y = x;
|
|
}
|
|
) 2 {x = 4;} {x = 3;}).y
|