Rollup merge of #61046 - mark-i-m:transcribe-fix, r=petrochenkov
Fix ICE with inconsistent macro matchers Fixes #61033 r? @petrochenkov
This commit is contained in:
commit
1ea0b1d274
5 changed files with 57 additions and 8 deletions
|
@ -170,9 +170,11 @@ pub fn transcribe(
|
|||
}
|
||||
|
||||
LockstepIterSize::Contradiction(ref msg) => {
|
||||
// This should never happen because the macro parser should generate
|
||||
// properly-sized matches for all meta-vars.
|
||||
cx.span_bug(seq.span(), &msg[..]);
|
||||
// FIXME: this really ought to be caught at macro definition time... It
|
||||
// happens when two meta-variables are used in the same repetition in a
|
||||
// sequence, but they come from different sequence matchers and repeat
|
||||
// different amounts.
|
||||
cx.span_fatal(seq.span(), &msg[..]);
|
||||
}
|
||||
|
||||
LockstepIterSize::Constraint(len, _) => {
|
||||
|
@ -187,9 +189,10 @@ pub fn transcribe(
|
|||
// Is the repetition empty?
|
||||
if len == 0 {
|
||||
if seq.op == quoted::KleeneOp::OneOrMore {
|
||||
// This should be impossible because the macro parser would not
|
||||
// match the given macro arm.
|
||||
cx.span_bug(sp.entire(), "this must repeat at least once");
|
||||
// FIXME: this really ought to be caught at macro definition
|
||||
// time... It happens when the Kleene operator in the matcher and
|
||||
// the body for the same meta-variable do not match.
|
||||
cx.span_fatal(sp.entire(), "this must repeat at least once");
|
||||
}
|
||||
} else {
|
||||
// 0 is the initial counter (we have done 0 repretitions so far). `len`
|
||||
|
@ -327,8 +330,7 @@ impl LockstepIterSize {
|
|||
LockstepIterSize::Constraint(r_len, _) if l_len == r_len => self,
|
||||
LockstepIterSize::Constraint(r_len, r_id) => {
|
||||
let msg = format!(
|
||||
"inconsistent lockstep iteration: \
|
||||
'{}' has {} items, but '{}' has {}",
|
||||
"meta-variable `{}` repeats {} times, but `{}` repeats {} times",
|
||||
l_id, l_len, r_id, r_len
|
||||
);
|
||||
LockstepIterSize::Contradiction(msg)
|
||||
|
|
9
src/test/ui/macros/issue-61033-1.rs
Normal file
9
src/test/ui/macros/issue-61033-1.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
// Regression test for issue #61033.
|
||||
|
||||
macro_rules! test1 {
|
||||
($x:ident, $($tt:tt)*) => { $($tt)+ } //~ERROR this must repeat at least once
|
||||
}
|
||||
|
||||
fn main() {
|
||||
test1!(x,);
|
||||
}
|
8
src/test/ui/macros/issue-61033-1.stderr
Normal file
8
src/test/ui/macros/issue-61033-1.stderr
Normal file
|
@ -0,0 +1,8 @@
|
|||
error: this must repeat at least once
|
||||
--> $DIR/issue-61033-1.rs:4:34
|
||||
|
|
||||
LL | ($x:ident, $($tt:tt)*) => { $($tt)+ }
|
||||
| ^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
19
src/test/ui/macros/issue-61033-2.rs
Normal file
19
src/test/ui/macros/issue-61033-2.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// Regression test for issue #61033.
|
||||
|
||||
macro_rules! test2 {
|
||||
(
|
||||
$(* $id1:ident)*
|
||||
$(+ $id2:ident)*
|
||||
) => {
|
||||
$( //~ERROR meta-variable `id1` repeats 2 times
|
||||
$id1 + $id2 // $id1 and $id2 may repeat different numbers of times
|
||||
)*
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
test2! {
|
||||
* a * b
|
||||
+ a + b + c
|
||||
}
|
||||
}
|
11
src/test/ui/macros/issue-61033-2.stderr
Normal file
11
src/test/ui/macros/issue-61033-2.stderr
Normal file
|
@ -0,0 +1,11 @@
|
|||
error: meta-variable `id1` repeats 2 times, but `id2` repeats 3 times
|
||||
--> $DIR/issue-61033-2.rs:8:10
|
||||
|
|
||||
LL | $(
|
||||
| __________^
|
||||
LL | | $id1 + $id2 // $id1 and $id2 may repeat different numbers of times
|
||||
LL | | )*
|
||||
| |_________^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue