eldritch horrors
afb839a0c9
static env association is from expr to its enclosing scope, but let
exprs set their association to their *inner* scope. this skips one level
of envs and will cause segfaults if the parent is a with expr.
fixes #145
Change-Id: I1d22146110f071ede21b4eed7ed34b5850ef2ef3
6 lines
67 B
Nix
6 lines
67 B
Nix
with { inherit ({}) invalid; };
|
|
let
|
|
x = builtins.break 1;
|
|
in
|
|
x
|