lambdaclass/cairo_native

Bug: cast from i8 to u8 always fails

Closed this issue · 0 comments

fn main() {
    let n_sub: i8 = 127;
    let _n_super: u8 = n_sub.try_into().unwrap();
}