Files
nix/tests/functional/lang/eval-okay-scope-7.nix
Robert Hensing 96e550efc5 Format .nix files
... with nixfmt (rfc style)
2025-01-24 17:04:02 +01:00

8 lines
52 B
Nix

rec {
inherit (x) y;
x = {
y = 1;
};
}
.y