Skip to content

Commit 57db958

Browse files
authored
Rollup merge of rust-lang#58075 - asettouf:master, r=varkor
Fix for issue rust-lang#58050 Hi, a quick PR to mention in the compiler error message that `?` is a macro operator, as according to issue rust-lang#58050 It passed `python x.py test src/tools/tidy` locally, as well as the recommendation to run `/x.py test src/test/ui --stage 1 --bless`. Let me know if anything else is needed.
2 parents 2349ec1 + c1f3d15 commit 57db958

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

src/libsyntax/ext/tt/quoted.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -475,11 +475,13 @@ where
475475
// #1 is a separator and #2 should be a KleepeOp.
476476
// (N.B. We need to advance the input iterator.)
477477
match parse_kleene_op(input, span) {
478-
// #2 is `?`, which is not allowed as a Kleene op in 2015 edition.
478+
// #2 is `?`, which is not allowed as a Kleene op in 2015 edition,
479+
// but is allowed in the 2018 edition.
479480
Ok(Ok((op, op2_span))) if op == KleeneOp::ZeroOrOne => {
480481
sess.span_diagnostic
481482
.struct_span_err(op2_span, "expected `*` or `+`")
482-
.note("`?` is not a macro repetition operator")
483+
.note("`?` is not a macro repetition operator in the 2015 edition, \
484+
but is accepted in the 2018 edition")
483485
.emit();
484486

485487
// Return a dummy
@@ -507,10 +509,12 @@ where
507509
Err(_) => op1_span,
508510
}
509511
} else {
510-
// `?` is not allowed as a Kleene op in 2015
512+
// `?` is not allowed as a Kleene op in 2015,
513+
// but is allowed in the 2018 edition
511514
sess.span_diagnostic
512515
.struct_span_err(op1_span, "expected `*` or `+`")
513-
.note("`?` is not a macro repetition operator")
516+
.note("`?` is not a macro repetition operator in the 2015 edition, \
517+
but is accepted in the 2018 edition")
514518
.emit();
515519

516520
// Return a dummy
@@ -520,11 +524,13 @@ where
520524

521525
// #1 is a separator followed by #2, a KleeneOp
522526
Ok(Err((tok, span))) => match parse_kleene_op(input, span) {
523-
// #2 is a `?`, which is not allowed as a Kleene op in 2015 edition.
527+
// #2 is a `?`, which is not allowed as a Kleene op in 2015 edition,
528+
// but is allowed in the 2018 edition
524529
Ok(Ok((op, op2_span))) if op == KleeneOp::ZeroOrOne => {
525530
sess.span_diagnostic
526531
.struct_span_err(op2_span, "expected `*` or `+`")
527-
.note("`?` is not a macro repetition operator")
532+
.note("`?` is not a macro repetition operator in the 2015 edition, \
533+
but is accepted in the 2018 edition")
528534
.emit();
529535

530536
// Return a dummy

src/test/ui/macros/macro-at-most-once-rep-2015-ques-rep.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ error: expected `*` or `+`
44
LL | ($(a)?) => {} //~ERROR expected `*` or `+`
55
| ^
66
|
7-
= note: `?` is not a macro repetition operator
7+
= note: `?` is not a macro repetition operator in the 2015 edition, but is accepted in the 2018 edition
88

99
error: expected `*` or `+`
1010
--> $DIR/macro-at-most-once-rep-2015-ques-rep.rs:10:11
1111
|
1212
LL | ($(a),?) => {} //~ERROR expected `*` or `+`
1313
| ^
1414
|
15-
= note: `?` is not a macro repetition operator
15+
= note: `?` is not a macro repetition operator in the 2015 edition, but is accepted in the 2018 edition
1616

1717
error: aborting due to 2 previous errors
1818

0 commit comments

Comments
 (0)