-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Add regression test for issue #99173 #150504
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
Conversation
Adds a test for nested proc-macro calls where the inner macro returns an empty TokenStream. This previously caused an ICE in rustc_resolve.
|
Failed to set assignee to
|
|
r? @cyrgani |
|
Please add |
|
Done. BTW, can you review this pr? |
|
@bors r+ rollup |
|
@bors retry |
…uwer Rollup of 4 pull requests Successful merges: - #150382 (Tweak wording of diff marker diagnostic) - #150431 (test and document that `proc_macro::Ident` is NFC-normalized) - #150504 (Add regression test for issue #99173) - #150568 (Update triagebot config for `compiler-errors`, `tests/{run-make,run-make-cargo}` and `fallback` adhoc_group) r? `@ghost` `@rustbot` modify labels: rollup
Close #99173.
Adds a regression test for #99173, which was an ICE that occurred when a proc-macro generated code that invoked another proc-macro returning an empty
TokenStream.