mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
13 lines
513 B
Plaintext
13 lines
513 B
Plaintext
error: invalid format string: expected `'}'` but string was terminated
|
|
--> $DIR/closing-brace-as-fill.rs:6:35
|
|
|
|
|
LL | println!("Hello, world! {0:}<3", 2);
|
|
| - ^ expected `'}'` in format string
|
|
| |
|
|
| this is not interpreted as a formatting closing brace
|
|
|
|
|
= note: the character `'}'` is interpreted as a fill character because of the `:` that precedes it
|
|
|
|
error: aborting due to 1 previous error
|
|
|