Fix empty expression evaluation

This commit is contained in:
Rerumu
2021-11-28 15:26:37 -05:00
parent 53bba14c00
commit c323b35961
+1 -1
View File
@@ -67,7 +67,7 @@ pub fn gen_expression(code: &[Instruction], w: &mut dyn Write) -> Result<()> {
return result; return result;
} }
unreachable!(); write!(w, "error(\"mundane expression\")")
} }
pub struct Module<'a> { pub struct Module<'a> {