mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
Reproduce mono::ir panic
This commit is contained in:
parent
bfd95d4627
commit
c59aa22402
2 changed files with 3 additions and 2 deletions
|
@ -7204,7 +7204,8 @@ fn call_by_name_help<'a>(
|
||||||
} else {
|
} else {
|
||||||
debug_assert!(
|
debug_assert!(
|
||||||
!field_symbols.is_empty(),
|
!field_symbols.is_empty(),
|
||||||
"should be in the list of imported_module_thunks"
|
"{} should be in the list of imported_module_thunks",
|
||||||
|
proc_name
|
||||||
);
|
);
|
||||||
|
|
||||||
debug_assert_eq!(
|
debug_assert_eq!(
|
||||||
|
|
|
@ -8,7 +8,7 @@ render :
|
||||||
[
|
[
|
||||||
Rectangle { top : F32, left : F32, bottom : F32, right : F32 },
|
Rectangle { top : F32, left : F32, bottom : F32, right : F32 },
|
||||||
Circle { top : F32, left : F32, radius : F32 },
|
Circle { top : F32, left : F32, radius : F32 },
|
||||||
# Text { top : F32, left : F32, text : Str },
|
# Text { top : F32, left : F32, text : Str },
|
||||||
]
|
]
|
||||||
render = \window ->
|
render = \window ->
|
||||||
Rectangle { top: 10, left: 10, bottom: 100, right: 100 }
|
Rectangle { top: 10, left: 10, bottom: 100, right: 100 }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue