Skip to content

Commit b8ae7b8

Browse files
committed
macro_literal_matcher: fixes per petrochenkov's review
1 parent fc284c1 commit b8ae7b8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/libsyntax/ext/tt/macro_rules.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1033,9 +1033,9 @@ fn is_legal_fragment_specifier(_sess: &ParseSess,
10331033
frag_name: &str,
10341034
_frag_span: Span) -> bool {
10351035
/*
1036-
* If new fragmnet specifiers are invented in nightly, `_sess`,
1037-
* `_features`, `_attrs`, and `_frag_span` will be useful for
1038-
* here for checking against feature gates. See past versions of
1036+
* If new fragment specifiers are invented in nightly, `_sess`,
1037+
* `_features`, `_attrs`, and `_frag_span` will be useful here
1038+
* for checking against feature gates. See past versions of
10391039
* this function.
10401040
*/
10411041
match frag_name {

src/test/run-pass/issues/issue-52169.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// run-pass
12-
#![cfg_attr(stage0, feature(macro_literal_matcher))]
1312

1413
macro_rules! a {
1514
($i:literal) => { "right" };

src/test/run-pass/macros/macro-literal.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// run-pass
12-
#![cfg_attr(stage0, feature(macro_literal_matcher))]
1312

1413
macro_rules! mtester {
1514
($l:literal) => {

0 commit comments

Comments
 (0)