eldritch horrors
3e43f4aeff
(cherry picked from commit 73065a400d176b21f518c1f4ece90c31318b218d)
Change-Id: I9356d8084d241a7904b66554d7c4194f8433edf7
10 lines
80 B
Nix
10 lines
80 B
Nix
let
|
|
c = {};
|
|
b = 2;
|
|
in {
|
|
a = 1;
|
|
inherit b;
|
|
inherit (c) d e;
|
|
f = 3;
|
|
}
|