about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-deferred-unary-formals.nix
blob: 1fbb3e853af4944568399b5ca87a88d39770b616 (plain) (blame)
1
2
3
4
5
6
# Application of unary operators on deferred formals arguments (via
# defaulting), see also b/255.
[
  (({ b ? !a, a }: b) { a = true; })
  (({ b ? -a, a }: b) { a = 2; })
]