Skip to content

Commit e4fc65b

Browse files
committed
test: Check type error
See #114
1 parent d67ec44 commit e4fc65b

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

src/lib.rs

+16-2
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,22 @@ fn main() {
613613
fn main() {
614614
let x: MyAlias = 32;
615615
assert!(jet::eq_32(x, 32));
616-
}
617-
"#;
616+
}"#;
617+
TestCase::program_text(Cow::Borrowed(prog_text))
618+
.with_witness_values(WitnessValues::default())
619+
.assert_run_success();
620+
}
621+
622+
#[test]
623+
fn type_error_regression() {
624+
let prog_text = r#"fn main() {
625+
let (a, b): (u32, u32) = (0, 1);
626+
assert!(jet::eq_32(a, 0));
627+
628+
let (c, d): (u32, u32) = (2, 3);
629+
assert!(jet::eq_32(c, 2));
630+
assert!(jet::eq_32(d, 3));
631+
}"#;
618632
TestCase::program_text(Cow::Borrowed(prog_text))
619633
.with_witness_values(WitnessValues::default())
620634
.assert_run_success();

0 commit comments

Comments
 (0)