Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
zapashcanon committed Jan 30, 2025
1 parent 7520be7 commit afe2007
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/fuzz/env.ml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ let empty conf =

let reset_locals env = env.locals <- []

let remove_block env = env.blocks <- List.tl env.blocks
let remove_block env =
match env.blocks with [] -> assert false | _hd :: tl -> env.blocks <- tl

let get_blocks env = env.blocks

Expand Down

0 comments on commit afe2007

Please sign in to comment.