Artem Agvanian

Results 4 comments of Artem Agvanian

Interestingly enough, the following code (with ensures and requires statements reordered) passes all checks: ```rust #[kani::ensures(|result| *result == old(val + 1))] #[kani::requires(val < i32::MAX)] pub fn next(mut val: i32) ->...

> Hey there, I've done most of it but I ran into this issue when running regression tests: ERROR: CBMC version is 5.89.0, expected at least 5.95.0 How can I...

@zhassan-aws thanks for pointing that out -- I interpret the Rust reference a bit differently in this case. I take the words you quoted to mean that it is indeed...

Updated the example above, sorry for that! Here is the output from MIRI: ``` error: Undefined Behavior: using uninitialized data, but this operation requires initialized memory --> src/main.rs:9:28 | 9...