We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__rust_begin_short_backtrace
1 parent 41444d3 commit 390e22bCopy full SHA for 390e22b
src/lib.rs
@@ -245,8 +245,11 @@ impl Frame {
245
/// Heuristically determine whether a frame is likely to be part of language
246
/// runtime.
247
fn is_runtime_init_code(&self) -> bool {
248
- const SYM_PREFIXES: &[&str] =
249
- &["std::rt::lang_start::", "test::run_test::run_test_inner::"];
+ const SYM_PREFIXES: &[&str] = &[
+ "std::rt::lang_start::",
250
+ "test::run_test::run_test_inner::",
251
+ "std::sys_common::backtrace::__rust_begin_short_backtrace",
252
+ ];
253
254
let (name, file) = match (self.name.as_ref(), self.filename.as_ref()) {
255
(Some(name), Some(filename)) => (name, filename.to_string_lossy()),
0 commit comments