For example, the following safe program leads to bp7 performing Undefined Behavior: ```rust // [dependencies] // bp7 = "0.9.2" fn main() { bp7::ffi::bundle_payload(0xdeadbeefusize as _); } ``` ```console Segmentation fault (core dumped) ``` In general it is unsound for a safe API to result in UB.