diff --git a/compiler/mono/src/ir.rs b/compiler/mono/src/ir.rs index 75f89ae6fa..da6448ff77 100644 --- a/compiler/mono/src/ir.rs +++ b/compiler/mono/src/ir.rs @@ -7204,7 +7204,8 @@ fn call_by_name_help<'a>( } else { debug_assert!( !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!( diff --git a/examples/tea/Hello.roc b/examples/tea/Hello.roc index a0d195419a..097da65953 100644 --- a/examples/tea/Hello.roc +++ b/examples/tea/Hello.roc @@ -8,7 +8,7 @@ render : [ Rectangle { top : F32, left : F32, bottom : F32, right : F32 }, Circle { top : F32, left : F32, radius : F32 }, - # Text { top : F32, left : F32, text : Str }, + # Text { top : F32, left : F32, text : Str }, ] render = \window -> Rectangle { top: 10, left: 10, bottom: 100, right: 100 }