Files
lix/tests/functional2/lang/function-autoargs/in.nix
T
piegames dbb6098ff4 tests/functional2/lang: Migrate attrs tests
Change-Id: I8eee261d76d34c4a138bc24d9c2b9a0dfb944c7f
2025-11-18 13:48:32 +00:00

17 lines
274 B
Nix

let
foobar = "foobar";
in
{ xyzzy2 ? xyzzy # mutually recursive args
, xyzzy ? "blaat" # will be overridden by --argstr
, fb ? foobar
, lib # will be set by --arg
}:
{
result = lib.id (builtins.concatStringsSep "" [xyzzy xyzzy2 fb]);
result2 = { xyzzy }: xyzzy;
}