about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-assert-thunk-condition.nix
let
  condition = x: y: x < y;
in

# The function application here will become a thunk which verifies that
  # assert forces the condition expression correctly.
assert condition 21 42; 21