guix/tests/lang/parse-fail-regression-20060610.nix
Eelco Dolstra 2b4b0658fa * This expression has an undefined variable which isn't detected, so
evaluation fails:

    error: impossible: undefined variable `gcc'
2006-07-10 17:35:00 +00:00

12 lines
97 B
Nix

let {
x =
{gcc}:
{
inherit gcc;
};
body = ({
inherit gcc;
}).gcc;
}