mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
error: named argument never used
|
|
--> $DIR/format-args-capture-missing-variables.rs:8:51
|
|
|
|
|
LL | format!("{valuea} {valueb}", valuea=5, valuec=7);
|
|
| ------------------- ^ named argument never used
|
|
| |
|
|
| formatting specifier missing
|
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:2:18
|
|
|
|
|
LL | format!("{} {foo} {} {bar} {}", 1, 2, 3);
|
|
| ^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `bar` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:2:27
|
|
|
|
|
LL | format!("{} {foo} {} {bar} {}", 1, 2, 3);
|
|
| ^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:6:15
|
|
|
|
|
LL | format!("{foo}");
|
|
| ^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `valueb` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:8:24
|
|
|
|
|
LL | format!("{valuea} {valueb}", valuea=5, valuec=7);
|
|
| ^^^^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:14:10
|
|
|
|
|
LL | {foo}
|
|
| ^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
|
--> $DIR/format-args-capture-missing-variables.rs:19:14
|
|
|
|
|
LL | panic!("{foo} {bar}", bar=1);
|
|
| ^^^ not found in this scope
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|