fix(tvix/eval): force condition of an assert
Change-Id: I3ad2234e8a8e4280e498c6d7af8ea0733ed4c7ea Reviewed-on: https://cl.tvl.fyi/c/depot/+/6699 Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
e04ccc9354
commit
7506983ce2
3 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
21
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue