about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-internal-formals-deferred.nix
blob: 5c6702120fc4c83d8b6781df6d46aa5d20ef7911 (plain) (blame)
1
2
3
# Tests formals which have internal default values that must be deferred.

({ optional ? defaultValue, defaultValue }: optional) { defaultValue = 42; }