Skip to content

Commit cd26e9a

Browse files
authored
bug-fix: correct type matching in if-else expression (#264)
1 parent bb87a88 commit cd26e9a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/mast/mod.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,17 @@ fn monomorphize_expr<B: Backend>(
10631063
let else_mono = monomorphize_expr(ctx, else_, mono_fn_env)?;
10641064

10651065
// make sure that the type of then_ and else_ match
1066-
if then_mono.typ != else_mono.typ {
1066+
let is_match = match (&then_mono.typ, &else_mono.typ) {
1067+
// generics not allowed as they should have been monomorphized
1068+
(Some(then_typ), Some(else_typ)) => then_typ.match_expected(else_typ, true),
1069+
_ => Err(Error::new(
1070+
"If-Else Monomorphization",
1071+
ErrorKind::UnexpectedError("Could not resolve type for the `if-else` branch"),
1072+
expr.span,
1073+
))?,
1074+
};
1075+
1076+
if !is_match {
10671077
Err(Error::new(
10681078
"If-Else Monomorphization",
10691079
ErrorKind::UnexpectedError(

0 commit comments

Comments
 (0)