forked from lix-project/lix
14 lines
104 B
Nix
14 lines
104 B
Nix
|
let {
|
||
|
|
||
|
as = {
|
||
|
x = 123;
|
||
|
y = 456;
|
||
|
};
|
||
|
|
||
|
bs = rec {
|
||
|
x = 789;
|
||
|
inherit (as) x;
|
||
|
};
|
||
|
|
||
|
}
|