use symex_lib::{any, assume};
fn main() {
let x: i128 = i128::MIN;
assume(x < 0);
assert_eq!(-x.abs(), x);
}
This code produces Encountered an unsatisfiable assumption, ignoring this path, even though the smallest value of i128 is definitely less than zero.