-
Notifications
You must be signed in to change notification settings - Fork 384
Backtrace initial spans are missing if the topmost span is nonlocal? #2172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
We always print the topmost span of the backtrace: Line 313 in 1c11fc6
To me this looks more like stdlib span printing is broken. |
I see the same thing with My guess is that this has to do with the |
Guess confirmed, after removing that flag I get the expected
|
I just noticed that a lot of diagnostics are missing the topmost span, and I'm pretty sure it's related to whether the span is in a local crate.
For example, with raw pointer tagging on
smallvec 1.8.0
, we currently get:But
crossbeam-epoch 0.9.8
with raw pointer tagging reports this:I feel like we should be able to test for this regression?
The text was updated successfully, but these errors were encountered: