Skip to content

Commit b92e542

Browse files
committed
Fix the test
1 parent 1bd0862 commit b92e542

2 files changed

+2
-2
lines changed

src/test/ui/feature-gate-macro_at_most_once_rep.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// gate is not used.
1313

1414
macro_rules! m { ($(a)?) => {} }
15-
//~^ ERROR Using the `?` macro Kleene operator for "at most one" repetition is unstable (see issue #48075)
15+
//~^ ERROR Using the `?` macro Kleene operator for "at most one" repetition is unstable
1616

1717
fn main() {
1818
m!();

src/test/ui/feature-gate-macro_at_most_once_rep.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: Using the `?` macro Kleene operator for "at most one" repetition is unstable
1+
error[E0658]: Using the `?` macro Kleene operator for "at most one" repetition is unstable (see issue #48075)
22
--> $DIR/feature-gate-macro_at_most_once_rep.rs:14:20
33
|
44
14 | macro_rules! m { ($(a)?) => {} }

0 commit comments

Comments
 (0)