Fix empty expression evaluation

This commit is contained in:
Rerumu 2021-11-28 15:02:30 -05:00
parent 53bba14c00
commit c323b35961

View File

@ -67,7 +67,7 @@ pub fn gen_expression(code: &[Instruction], w: &mut dyn Write) -> Result<()> {
return result;
}
unreachable!();
write!(w, "error(\"mundane expression\")")
}
pub struct Module<'a> {