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

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