Uh oh!
There was an error while loading. Please reload this page.
macros: fix regression with include!() - #40583
Merged
Merged
Conversation
nikomatsakis
commented
Mar 16, 2017
Contributor
Nominated for beta. |
nikomatsakis
commented
Mar 16, 2017
Contributor
Marking as beta-accepted, presuming the patch is r+'d. |
nrc
commented
Mar 17, 2017
Member
@bors: r+ |
bors
commented
Mar 17, 2017
Collaborator
📌 Commit 284ece3 has been approved by |
nrc
commented
Mar 17, 2017
Member
iirc, we leave the beta-nominated label on until merged to beta. |
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Mar 17, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Mar 17, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
alexcrichton
commented
Mar 17, 2017
Member
@bors: r- I think this has a failure |
jseyfriedforce-pushed
the
fix_include_macro_regression
branch
from
March 17, 2017 22:21
284ece3 to
cb96adeComparejseyfried
commented
Mar 17, 2017
ContributorAuthor
@alexcrichton Indeed, problem was #37195 -- fixed. |
bors
commented
Mar 17, 2017
Collaborator
📌 Commit cb96ade has been approved by |
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Mar 18, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
arielb1 pushed a commit
to arielb1/rust
that referenced
this pull request
Mar 18, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
arielb1 pushed a commit
to arielb1/rust
that referenced
this pull request
Mar 19, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Mar 19, 2017
…ion, r=nrc macros: fix regression with `include!()` Fixesrust-lang#40469, a regression when `include!()`ing a `macro_rules!` containing `$crate`. r? @nrc
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 freeto 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.
Fixes#40469, a regression when
include!()ing amacro_rules!containing$crate.r? @nrc