* This expression has an undefined variable which isn't detected, so

evaluation fails:

    error: impossible: undefined variable `gcc'
This commit is contained in:
Eelco Dolstra 2006-07-10 17:35:00 +00:00
parent d51aede4af
commit 2b4b0658fa
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
let {
x =
{gcc}:
{
inherit gcc;
};
body = ({
inherit gcc;
}).gcc;
}