mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
* This expression has an undefined variable which isn't detected, so
evaluation fails: error: impossible: undefined variable `gcc'
This commit is contained in:
parent
d51aede4af
commit
2b4b0658fa
1 changed files with 11 additions and 0 deletions
11
tests/lang/parse-fail-regression-20060610.nix
Normal file
11
tests/lang/parse-fail-regression-20060610.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
let {
|
||||
x =
|
||||
{gcc}:
|
||||
{
|
||||
inherit gcc;
|
||||
};
|
||||
|
||||
body = ({
|
||||
inherit gcc;
|
||||
}).gcc;
|
||||
}
|
Loading…
Reference in a new issue