blob: c4c241048abb04b4f9924a28dcbc49c057c10918 [file] [edit]
error: argument never used
--> $DIR/format-foreign-dollar-without-spec.rs:3:25
|
LL | println!("%65536$", 1);
| --------- ^ argument never used
| |
| formatting specifier missing
|
help: format specifiers use curly braces, consider adding a format specifier
|
LL | println!("%65536${}", 1);
| ++
error: aborting due to 1 previous error