| 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 | |