Zixi Liu - NJU
Results
3
comments of
Zixi Liu - NJU
Sorry, I made a mistake. If we use `-C opt-level=0`, all the tests can pass, but if we use `-C opt-level=0/2/3/s/z`, this panic would be triggered.
I have the same problem.
Another example to trigger memory allocation failed: ```rust use cdrs::types::try_i_to_n_bytes; fn main() { let int:i64 = -3184069818265628469; let n:usize = 3395091926238641022; let _ = try_i_to_n_bytes(int, n); } ``` The output...