piegames
a2ae14bfd8
Calls to `show` have been removed. To counter the loss of information,
the error positions have been improved and now correctly point to the
current selector instead of the entire select expression.
Change-Id: I4771fe874af1ac15828a9863550cd4369a8f0e94
19 lines
596 B
Plaintext
19 lines
596 B
Plaintext
error:
|
|
… while evaluating an expression to select 'foo' on it
|
|
at /pwd/lang/eval-fail-recursion.nix:1:21:
|
|
1| let a = {} // a; in a.foo
|
|
| ^
|
|
2|
|
|
|
|
… in the right operand of the update (//) operator
|
|
at /pwd/lang/eval-fail-recursion.nix:1:12:
|
|
1| let a = {} // a; in a.foo
|
|
| ^
|
|
2|
|
|
|
|
error: infinite recursion encountered
|
|
at /pwd/lang/eval-fail-recursion.nix:1:15:
|
|
1| let a = {} // a; in a.foo
|
|
| ^
|
|
2|
|