We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb87a88 commit cd26e9aCopy full SHA for cd26e9a
src/mast/mod.rs
@@ -1063,7 +1063,17 @@ fn monomorphize_expr<B: Backend>(
1063
let else_mono = monomorphize_expr(ctx, else_, mono_fn_env)?;
1064
1065
// make sure that the type of then_ and else_ match
1066
- if then_mono.typ != else_mono.typ {
+ 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 {
1077
Err(Error::new(
1078
"If-Else Monomorphization",
1079
ErrorKind::UnexpectedError(
0 commit comments