Skip to content

Commit 3dee463

Browse files
committed
Add note when matching token with nonterminal
The current error message is _really_ confusing.
1 parent d583342 commit 3dee463

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

compiler/rustc_expand/src/mbe/diagnostics.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
use std::borrow::Cow;
2-
31
use crate::base::{DummyResult, ExtCtxt, MacResult};
42
use crate::expand::{parse_ast_fragment, AstFragmentKind};
53
use crate::mbe::{
64
macro_parser::{MatcherLoc, NamedParseResult, ParseResult::*, TtParser},
75
macro_rules::{try_match_macro, Tracker},
86
};
9-
use rustc_ast::token::{self, Token};
7+
use rustc_ast::token::{self, Token, TokenKind};
108
use rustc_ast::tokenstream::TokenStream;
119
use rustc_ast_pretty::pprust;
1210
use rustc_errors::{Applicability, Diagnostic, DiagnosticBuilder, DiagnosticMessage};
1311
use rustc_parse::parser::{Parser, Recovery};
1412
use rustc_span::source_map::SourceMap;
1513
use rustc_span::symbol::Ident;
1614
use rustc_span::Span;
15+
use std::borrow::Cow;
1716

1817
use super::macro_rules::{parser_from_cx, NoopTracker};
1918

@@ -63,6 +62,13 @@ pub(super) fn failed_to_match_macro<'cx>(
6362
err.note(format!("while trying to match {remaining_matcher}"));
6463
}
6564

65+
if let MatcherLoc::Token { token: expected_token } = &remaining_matcher
66+
&& (matches!(expected_token.kind, TokenKind::Interpolated(_))
67+
|| matches!(token.kind, TokenKind::Interpolated(_)))
68+
{
69+
err.note("captured metavariables except for `$tt`, `$ident` and `$lifetime` cannot be compared to other tokens");
70+
}
71+
6672
// Check whether there's a missing comma in this macro call, like `println!("{}" a);`
6773
if let Some((arg, comma_span)) = arg.add_comma() {
6874
for lhs in lhses {

tests/ui/macros/nonterminal-matching.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ LL | macro n(a $nt_item b) {
1818
...
1919
LL | complex_nonterminal!(enum E {});
2020
| ------------------------------- in this macro invocation
21+
= note: captured metavariables except for `$tt`, `$ident` and `$lifetime` cannot be compared to other tokens
2122
= note: this error originates in the macro `complex_nonterminal` (in Nightly builds, run with -Z macro-backtrace for more info)
2223

2324
error: aborting due to previous error

0 commit comments

Comments
 (0)