nix-in-node/samples/attrsets.nix

9 lines
153 B
Nix

rec {
a = "hi";
b = a;
c.d = { e = 5; };
"${b}s" = { f = 4; };
# FIXME: The below currently breaks desugar-attrsets
# ${c}.d = { g = 6; };
}.his.f