Factor out StmtKind::MacCall fields into MacCallStmt struct#76132
Merged
bors merged 2 commits intorust-lang:masterfrom Sep 2, 2020
Merged
Factor out StmtKind::MacCall fields into MacCallStmt struct#76132bors merged 2 commits intorust-lang:masterfrom
MacCallStmt struct#76132bors merged 2 commits intorust-lang:masterfrom
Conversation
In PR rust-lang#76130, I add a fourth field, which makes using a tuple variant somewhat unwieldy.
Contributor
|
(rust_highfive has picked a reviewer for you, use r? to override) |
Contributor
Contributor
|
@bors r+ |
Collaborator
|
📌 Commit ee19021 has been approved by |
Collaborator
|
⌛ Testing commit ee19021 with merge 575b64b6f8f7bc4bc60a70ecc311236205217098... |
Collaborator
|
💔 Test failed - checks-actions |
Collaborator
|
Your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem. Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
Contributor
|
@bors retry |
Collaborator
|
⌛ Testing commit ee19021 with merge ce51b1a5a4d3ead72b62fb81e22c5ca57cef5a8b... |
Member
|
@bors retry |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Sep 2, 2020
Rollup of 14 pull requests Successful merges: - rust-lang#74880 (Add trailing comma support to matches macro) - rust-lang#76074 (Add new `-Z dump-mir-spanview` option) - rust-lang#76088 (Add more examples to lexicographic cmp on Iterators.) - rust-lang#76099 (Add info about `!` and `impl Trait`) - rust-lang#76126 (Use "Fira Sans" for crate list font) - rust-lang#76132 (Factor out StmtKind::MacCall fields into `MacCallStmt` struct) - rust-lang#76143 (Give a better error message for duplicate built-in macros) - rust-lang#76158 (Stabilise link-self-contained option) - rust-lang#76201 (Move to intra-doc links for library/core/src/panic.rs) - rust-lang#76206 (Make all methods of `std::net::Ipv6Addr` const) - rust-lang#76207 (# Move to intra-doc links for library/core/src/clone.rs) - rust-lang#76212 (Document lint missing_doc_code_examples is nightly-only) - rust-lang#76218 (lexer: Tiny improvement to shebang detection) - rust-lang#76221 (Clean up header in `iter` docs for `for` loops) Failed merges: r? @ghost
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In PR #76130, I add a fourth field, which makes using a tuple variant
somewhat unwieldy.