mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
13 lines
117 B
Nix
13 lines
117 B
Nix
(
|
|
(
|
|
x: as:
|
|
{ x }:
|
|
rec {
|
|
inherit (as) x;
|
|
y = x;
|
|
}
|
|
)
|
|
2
|
|
{ x = 4; }
|
|
{ x = 3; }
|
|
).y
|