1unsafe extern "C" {
2#[link_name = "intrinsics::debug::break"]
3fn extern_break();
4}
56/// Sets a breakpoint in the emitted Miden Assembly at the point this function is called.
7#[inline(always)]
8#[track_caller]
9pub fn breakpoint() {
10unsafe {
11 extern_break();
12 }
13}