-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
file!
, line!
and col!
(and possibly module!
) do the Wrong Thing.
#3066
Comments
Add the following to the last list of syntax extensions in the syntax extensions section in rust.md when this bug is fixed:
|
Blocked by #3065, de-milestoning |
Nominating for milestone 5, production-ready |
accepted for production-ready milestone |
@graydon -- in the original issue, @paulstansifer said "the results won't be any different until #3065 is fixed." Maybe he will see this and explain why. |
#3065 is about making sure the syntactic backtrace (in |
I just ran the example from reported in this bug, and the emitted message points to the line with "NOT HERE": % /tmp/ldemo So I'm closing this bug. |
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from `d103836` to `1a7faa8`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/s2n-quic/commit/1a7faa87ebcf2b84a068f21af3306a6f42eb8c74"><code>1a7faa8</code></a> feat(s2n-quic-xdp): add flag for scatter-gather mode (<a href="https://redirect.github.com/aws/s2n-quic/issues/2144">#2144</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/d0c9f764610b3636dfbd68429807d0e7d15241ba"><code>d0c9f76</code></a> feat(s2n-quic-core): add stream state enums (<a href="https://redirect.github.com/aws/s2n-quic/issues/2132">#2132</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/a14804f295ecdaf781dcccce52c9985a0f9017b6"><code>a14804f</code></a> feat(s2n-quic-xdp): provide umem ptr method (<a href="https://redirect.github.com/aws/s2n-quic/issues/2146">#2146</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/fb3ac86d57eefc0c4032687df9a25543a2b7b636"><code>fb3ac86</code></a> build(deps): update env_logger requirement in /tools/xdp (<a href="https://redirect.github.com/aws/s2n-quic/issues/2101">#2101</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/2ad398c5c53580bfbacfcb98dfe62a6f313be134"><code>2ad398c</code></a> build(deps): bump docker/setup-buildx-action from 3.0.0 to 3.1.0 (<a href="https://redirect.github.com/aws/s2n-quic/issues/2137">#2137</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/0b2be2356861a10ea8e7c02878a11b3823eaee62"><code>0b2be23</code></a> build(s2n-quic-xdp): update toolchain and dependencies (<a href="https://redirect.github.com/aws/s2n-quic/issues/2147">#2147</a>)</li> <li><a href="https://github.com/aws/s2n-quic/commit/670b7adaf13d1f73fa669b2d175c6591a53895b7"><code>670b7ad</code></a> test(s2n-quic-core): switch solver to CaDiCaL for <code>weighted_average_test</code> (<a href="https://redirect.github.com/aws/s2n-quic/issues/2">#2</a>...</li> <li>See full diff in <a href="https://github.com/aws/s2n-quic/compare/d103836ce086534e63c75a0b497079ed74e58c18...1a7faa87ebcf2b84a068f21af3306a6f42eb8c74">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com>
In the following code, the error message refers to the location of the macro calls at HERE, not NOTHERE. I think this (a) isn't what happens in C, etc., and (b) is never useful.
Fixing this should be a simple mater of getting the syntax backtrace from cx in source_util.rs and finding the topmost span, and ignoring the span that's temptingly passed in as an argument. Except that the results won't be any different until #3065 is fixed.
The text was updated successfully, but these errors were encountered: