expect compiler error for integer test

This commit is contained in:
collin 2020-08-19 00:44:01 -07:00
parent c686115305
commit 20ae244f67

View File

@ -189,7 +189,7 @@ macro_rules! test_int {
program.set_main_input(main_input); program.set_main_input(main_input);
expect_computation_error(program); expect_compiler_error(program);
} else { } else {
let c = match a.checked_div(b) { let c = match a.checked_div(b) {
Some(valid) => valid, Some(valid) => valid,