Rollup merge of #123223 - estebank:issue-123079, r=pnkfelix
Fix invalid silencing of parsing error Given ```rust macro_rules! a { ( ) => { impl<'b> c for d { e::<f'g> } }; } ``` ensure an error is emitted. Fix #123079.
This commit is contained in:
commit
68359e2284
@ -697,7 +697,6 @@ impl<'psess, 'src> StringReader<'psess, 'src> {
|
||||
let expn_data = prefix_span.ctxt().outer_expn_data();
|
||||
|
||||
if expn_data.edition >= Edition::Edition2021 {
|
||||
let mut silence = false;
|
||||
// In Rust 2021, this is a hard error.
|
||||
let sugg = if prefix == "rb" {
|
||||
Some(errors::UnknownPrefixSugg::UseBr(prefix_span))
|
||||
@ -705,25 +704,20 @@ impl<'psess, 'src> StringReader<'psess, 'src> {
|
||||
if self.cursor.first() == '\''
|
||||
&& let Some(start) = self.last_lifetime
|
||||
&& self.cursor.third() != '\''
|
||||
&& let end = self.mk_sp(self.pos, self.pos + BytePos(1))
|
||||
&& !self.psess.source_map().is_multiline(start.until(end))
|
||||
{
|
||||
// An "unclosed `char`" error will be emitted already, silence redundant error.
|
||||
silence = true;
|
||||
Some(errors::UnknownPrefixSugg::MeantStr {
|
||||
start,
|
||||
end: self.mk_sp(self.pos, self.pos + BytePos(1)),
|
||||
})
|
||||
// FIXME: An "unclosed `char`" error will be emitted already in some cases,
|
||||
// but it's hard to silence this error while not also silencing important cases
|
||||
// too. We should use the error stashing machinery instead.
|
||||
Some(errors::UnknownPrefixSugg::MeantStr { start, end })
|
||||
} else {
|
||||
Some(errors::UnknownPrefixSugg::Whitespace(prefix_span.shrink_to_hi()))
|
||||
}
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let err = errors::UnknownPrefix { span: prefix_span, prefix, sugg };
|
||||
if silence {
|
||||
self.dcx().create_err(err).delay_as_bug();
|
||||
} else {
|
||||
self.dcx().emit_err(err);
|
||||
}
|
||||
self.dcx().emit_err(errors::UnknownPrefix { span: prefix_span, prefix, sugg });
|
||||
} else {
|
||||
// Before Rust 2021, only emit a lint for migration.
|
||||
self.psess.buffer_lint_with_diagnostic(
|
||||
|
@ -0,0 +1,9 @@
|
||||
//@ edition:2021
|
||||
macro_rules! a {
|
||||
( ) => {
|
||||
impl<'b> c for d {
|
||||
e::<f'g> //~ ERROR prefix `f` is unknown
|
||||
}
|
||||
};
|
||||
}
|
||||
fn main() {}
|
@ -0,0 +1,14 @@
|
||||
error: prefix `f` is unknown
|
||||
--> $DIR/dont-ice-on-invalid-lifetime-in-macro-definition.rs:5:17
|
||||
|
|
||||
LL | e::<f'g>
|
||||
| ^ unknown prefix
|
||||
|
|
||||
= note: prefixed identifiers and literals are reserved since Rust 2021
|
||||
help: consider inserting whitespace here
|
||||
|
|
||||
LL | e::<f 'g>
|
||||
| +
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
|
@ -3,5 +3,6 @@
|
||||
//@[rust2021] edition:2021
|
||||
fn main() {
|
||||
println!('hello world');
|
||||
//[rust2015,rust2018,rust2021]~^ ERROR unterminated character literal
|
||||
//~^ ERROR unterminated character literal
|
||||
//[rust2021]~| ERROR prefix `world` is unknown
|
||||
}
|
||||
|
@ -1,3 +1,15 @@
|
||||
error: prefix `world` is unknown
|
||||
--> $DIR/lex-bad-str-literal-as-char-3.rs:5:21
|
||||
|
|
||||
LL | println!('hello world');
|
||||
| ^^^^^ unknown prefix
|
||||
|
|
||||
= note: prefixed identifiers and literals are reserved since Rust 2021
|
||||
help: if you meant to write a string literal, use double quotes
|
||||
|
|
||||
LL | println!("hello world");
|
||||
| ~ ~
|
||||
|
||||
error[E0762]: unterminated character literal
|
||||
--> $DIR/lex-bad-str-literal-as-char-3.rs:5:26
|
||||
|
|
||||
@ -9,6 +21,6 @@ help: if you meant to write a string literal, use double quotes
|
||||
LL | println!("hello world");
|
||||
| ~ ~
|
||||
|
||||
error: aborting due to 1 previous error
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0762`.
|
||||
|
9
tests/ui/lexer/lex-bad-str-literal-as-char-4.rs
Normal file
9
tests/ui/lexer/lex-bad-str-literal-as-char-4.rs
Normal file
@ -0,0 +1,9 @@
|
||||
//@edition:2021
|
||||
macro_rules! foo {
|
||||
() => {
|
||||
println!('hello world');
|
||||
//~^ ERROR unterminated character literal
|
||||
//~| ERROR prefix `world` is unknown
|
||||
}
|
||||
}
|
||||
fn main() {}
|
26
tests/ui/lexer/lex-bad-str-literal-as-char-4.stderr
Normal file
26
tests/ui/lexer/lex-bad-str-literal-as-char-4.stderr
Normal file
@ -0,0 +1,26 @@
|
||||
error: prefix `world` is unknown
|
||||
--> $DIR/lex-bad-str-literal-as-char-4.rs:4:25
|
||||
|
|
||||
LL | println!('hello world');
|
||||
| ^^^^^ unknown prefix
|
||||
|
|
||||
= note: prefixed identifiers and literals are reserved since Rust 2021
|
||||
help: if you meant to write a string literal, use double quotes
|
||||
|
|
||||
LL | println!("hello world");
|
||||
| ~ ~
|
||||
|
||||
error[E0762]: unterminated character literal
|
||||
--> $DIR/lex-bad-str-literal-as-char-4.rs:4:30
|
||||
|
|
||||
LL | println!('hello world');
|
||||
| ^^^
|
||||
|
|
||||
help: if you meant to write a string literal, use double quotes
|
||||
|
|
||||
LL | println!("hello world");
|
||||
| ~ ~
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0762`.
|
Loading…
x
Reference in New Issue
Block a user