Files
nix/tests/functional/lang/eval-fail-undeclared-arg.err.exp
Robert Hensing b04077c0ec fix: Update shifted source positions after formatting
Carefully reviewed...
2025-01-24 18:53:42 +01:00

14 lines
418 B
Plaintext

error:
… from call site
at /pwd/lang/eval-fail-undeclared-arg.nix:1:1:
1| ({ x, z }: x + z) {
| ^
2| x = "foo";
error: function 'anonymous lambda' called with unexpected argument 'y'
at /pwd/lang/eval-fail-undeclared-arg.nix:1:2:
1| ({ x, z }: x + z) {
| ^
2| x = "foo";
Did you mean one of x or z?