mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
error: this file contains an unclosed delimiter
|
|
--> $DIR/unused_parens_multibyte_recovery.rs:11:17
|
|
|
|
|
LL | fn f(){(print!(á
|
|
| -- - ^
|
|
| || |
|
|
| || unclosed delimiter
|
|
| |unclosed delimiter
|
|
| unclosed delimiter
|
|
|
|
error: this file contains an unclosed delimiter
|
|
--> $DIR/unused_parens_multibyte_recovery.rs:11:17
|
|
|
|
|
LL | fn f(){(print!(á
|
|
| -- - ^
|
|
| || |
|
|
| || unclosed delimiter
|
|
| |unclosed delimiter
|
|
| unclosed delimiter
|
|
|
|
error: this file contains an unclosed delimiter
|
|
--> $DIR/unused_parens_multibyte_recovery.rs:11:17
|
|
|
|
|
LL | fn f(){(print!(á
|
|
| -- - ^
|
|
| || |
|
|
| || unclosed delimiter
|
|
| |unclosed delimiter
|
|
| unclosed delimiter
|
|
|
|
error: format argument must be a string literal
|
|
--> $DIR/unused_parens_multibyte_recovery.rs:11:16
|
|
|
|
|
LL | fn f(){(print!(á
|
|
| ^
|
|
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
LL | fn f(){(print!("{}", á
|
|
| +++++
|
|
|
|
error: aborting due to 4 previous errors
|
|
|