14 lines
404 B
Rust
14 lines
404 B
Rust
extern "Rust" {
|
|
fn miri_get_backtrace() -> Box<[*mut ()]>;
|
|
fn miri_resolve_frame(ptr: *mut (), flags: u64);
|
|
}
|
|
|
|
fn main() {
|
|
let frames = unsafe { miri_get_backtrace() };
|
|
for frame in frames.into_iter() {
|
|
unsafe {
|
|
miri_resolve_frame(*frame, 0); //~ ERROR Undefined Behavior: Bad declaration of miri_resolve_frame - should return a struct with 4 fields
|
|
}
|
|
}
|
|
}
|