mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
fix bug in expect serialization of lambda sets
This commit is contained in:
parent
52f0dfbaf4
commit
bdec61d5bb
3 changed files with 45 additions and 4 deletions
|
@ -384,7 +384,7 @@ fn render_expect_failure<'a>(
|
|||
let data = expectations.get_mut(&module_id).unwrap();
|
||||
|
||||
let current = match data.expectations.get(&failure_region) {
|
||||
None => panic!("region not in list of expects"),
|
||||
None => panic!("region {failure_region:?} not in list of expects"),
|
||||
Some(current) => current,
|
||||
};
|
||||
let subs = arena.alloc(&mut data.subs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue