summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/format-args-temporaries-in-write.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/format-args-temporaries-in-write.stderr')
-rw-r--r--tests/ui/macros/format-args-temporaries-in-write.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/macros/format-args-temporaries-in-write.stderr b/tests/ui/macros/format-args-temporaries-in-write.stderr
index 520b2ce50..e05246cfb 100644
--- a/tests/ui/macros/format-args-temporaries-in-write.stderr
+++ b/tests/ui/macros/format-args-temporaries-in-write.stderr
@@ -4,7 +4,7 @@ error[E0597]: `mutex` does not live long enough
LL | let mutex = Mutex;
| ----- binding `mutex` declared here
LL | write!(Out, "{}", mutex.lock()) /* no semicolon */
- | ^^^^^^^^^^^^
+ | ^^^^^-------
| |
| borrowed value does not live long enough
| a temporary with access to the borrow is created here ...
@@ -21,7 +21,7 @@ error[E0597]: `mutex` does not live long enough
LL | let mutex = Mutex;
| ----- binding `mutex` declared here
LL | writeln!(Out, "{}", mutex.lock()) /* no semicolon */
- | ^^^^^^^^^^^^
+ | ^^^^^-------
| |
| borrowed value does not live long enough
| a temporary with access to the borrow is created here ...