mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
17 lines
528 B
Plaintext
17 lines
528 B
Plaintext
error: argument never used
|
|
--> $DIR/issue-92267.rs:3:34
|
|
|
|
|
LL | pub fn main() { println!("🦀%%%", 0) }
|
|
| ^ argument never used
|
|
|
|
|
note: format specifiers use curly braces, and the conversion specifier `
|
|
` is unknown or unsupported
|
|
--> $DIR/issue-92267.rs:3:30
|
|
|
|
|
LL | pub fn main() { println!("🦀%%%", 0) }
|
|
| ^^
|
|
= note: printf formatting is not supported; see the documentation for `std::fmt`
|
|
|
|
error: aborting due to 1 previous error
|
|
|