diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ui/did_you_mean/issue-105225.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/did_you_mean/issue-105225.stderr b/tests/ui/did_you_mean/issue-105225.stderr index 8c366f31311..dc18e7268b4 100644 --- a/tests/ui/did_you_mean/issue-105225.stderr +++ b/tests/ui/did_you_mean/issue-105225.stderr @@ -34,7 +34,7 @@ note: the formatting specifier is referencing the binding already LL | println!("{} {x}", x, x); | ^ -error: redundant argument +error: redundant arguments --> $DIR/issue-105225.rs:13:14 | LL | println!("{x} {y}", x, y); @@ -51,7 +51,7 @@ LL - println!("{x} {y}", x, y); LL + println!("{x} {y}", ); | -error: redundant argument +error: redundant arguments --> $DIR/issue-105225.rs:17:14 | LL | println!("{} {} {x} {y} {}", x, x, x, y, y); |
