We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d67ec44 commit e4fc65bCopy full SHA for e4fc65b
src/lib.rs
@@ -613,8 +613,22 @@ fn main() {
613
fn main() {
614
let x: MyAlias = 32;
615
assert!(jet::eq_32(x, 32));
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
632
TestCase::program_text(Cow::Borrowed(prog_text))
633
.with_witness_values(WitnessValues::default())
634
.assert_run_success();
0 commit comments