blob: d5a07c50f00d02e732f6123719fe770f3011e92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error: argument never used
--> $DIR/format-foreign-dollar-without-spec.rs:3:25
|
LL | println!("%65536$", 1);
| ^ argument never used
|
note: format specifiers use curly braces, and the conversion specifier `
` is unknown or unsupported
--> $DIR/format-foreign-dollar-without-spec.rs:3:15
|
LL | println!("%65536$", 1);
| ^^^^^^^^
= note: printf formatting is not supported; see the documentation for `std::fmt`
error: aborting due to 1 previous error
|