summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr')
-rw-r--r--tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr b/tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr
index ecf598b10..2c2cbb15b 100644
--- a/tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr
+++ b/tests/ui/macros/rfc-3086-metavar-expr/required-feature.stderr
@@ -1,8 +1,8 @@
error[E0658]: meta-variable expressions are unstable
--> $DIR/required-feature.rs:3:10
|
-LL | ${ count(e) }
- | ^^^^^^^^^^^^
+LL | ${ count($e) }
+ | ^^^^^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable
@@ -46,17 +46,17 @@ LL | ( $$( $$any:tt )* ) => { $$( $$any )* };
error[E0658]: meta-variable expressions are unstable
--> $DIR/required-feature.rs:22:13
|
-LL | $( ${ignore(e)} ${index()} )*
- | ^^^^^^^^^^^
+LL | $( ${ignore($e)} ${index()} )*
+ | ^^^^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable
error[E0658]: meta-variable expressions are unstable
- --> $DIR/required-feature.rs:22:26
+ --> $DIR/required-feature.rs:22:27
|
-LL | $( ${ignore(e)} ${index()} )*
- | ^^^^^^^^^
+LL | $( ${ignore($e)} ${index()} )*
+ | ^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable
@@ -64,8 +64,8 @@ LL | $( ${ignore(e)} ${index()} )*
error[E0658]: meta-variable expressions are unstable
--> $DIR/required-feature.rs:30:19
|
-LL | 0 $( + 1 ${ignore(i)} )*
- | ^^^^^^^^^^^
+LL | 0 $( + 1 ${ignore($i)} )*
+ | ^^^^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable
@@ -73,17 +73,17 @@ LL | 0 $( + 1 ${ignore(i)} )*
error[E0658]: meta-variable expressions are unstable
--> $DIR/required-feature.rs:37:13
|
-LL | $( ${ignore(e)} ${length()} )*
- | ^^^^^^^^^^^
+LL | $( ${ignore($e)} ${length()} )*
+ | ^^^^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable
error[E0658]: meta-variable expressions are unstable
- --> $DIR/required-feature.rs:37:26
+ --> $DIR/required-feature.rs:37:27
|
-LL | $( ${ignore(e)} ${length()} )*
- | ^^^^^^^^^^
+LL | $( ${ignore($e)} ${length()} )*
+ | ^^^^^^^^^^
|
= note: see issue #83527 <https://github.com/rust-lang/rust/issues/83527> for more information
= help: add `#![feature(macro_metavar_expr)]` to the crate attributes to enable