1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00
nix/tests/functional/lang/eval-fail-scope-5.err.exp
2025-01-24 18:53:42 +01:00

28 lines
719 B
Text

error:
… while evaluating the attribute 'body'
at /pwd/lang/eval-fail-scope-5.nix:13:3:
12|
13| body = f { };
| ^
14|
… from call site
at /pwd/lang/eval-fail-scope-5.nix:13:10:
12|
13| body = f { };
| ^
14|
… while calling 'f'
at /pwd/lang/eval-fail-scope-5.nix:7:5:
6| f =
7| {
| ^
8| x ? y,
error: infinite recursion encountered
at /pwd/lang/eval-fail-scope-5.nix:8:11:
7| {
8| x ? y,
| ^
9| y ? x,