about summary refs log tree commit diff
path: root/tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-06-03 07:17:19 +0200
committerLeón Orell Valerian Liehr <me@fmease.dev>2024-06-03 07:25:32 +0200
commitb2949ff9118715ce26af3c0b023921ca855ca772 (patch)
tree51993910ecab4d65a9f052785d8c1942afbcb872 /tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs
parent9f2d0b3490729ed65da73f64b28d8d1f197af113 (diff)
downloadrust-b2949ff9118715ce26af3c0b023921ca855ca772.tar.gz
rust-b2949ff9118715ce26af3c0b023921ca855ca772.zip
Spruce up the diagnostics of some early lints
Diffstat (limited to 'tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs')
-rw-r--r--tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs b/tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs
index 9fec546ecd6..1eda5f5bb6b 100644
--- a/tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs
+++ b/tests/ui/macros/rfc-3086-metavar-expr/syntax-errors.rs
@@ -35,7 +35,7 @@ macro_rules! no_curly__no_rhs_dollar__no_round {
 #[rustfmt::skip] // autoformatters can break a few of the error traces
 macro_rules! no_curly__rhs_dollar__round {
     ( $( $i:ident ),* ) => { count($i) };
-    //~^ ERROR variable 'i' is still repeating at this depth
+    //~^ ERROR variable `i` is still repeating at this depth
 }
 
 #[rustfmt::skip] // autoformatters can break a few of the error traces