We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 788682a commit e0a7034Copy full SHA for e0a7034
crates/without_debuginfo/tests/smoke.rs
@@ -7,6 +7,7 @@ fn all_frames_have_symbols() {
7
backtrace::trace(|frame| {
8
let mut any = false;
9
backtrace::resolve_frame(frame, |sym| {
10
+ println!("{:?}, {:?}", sym.name(), frame.ip().is_null());
11
if sym.name().is_some() {
12
any = true;
13
}
0 commit comments