2023-07-17 00:36:00 +00:00
|
|
|
// issue: 112732
|
|
|
|
|
|
|
|
// `}` is typoed since it is interpreted as a fill character rather than a closing bracket
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello, world! {0:}<3", 2);
|
2024-10-14 23:22:51 +02:00
|
|
|
//~^ ERROR invalid format string: expected `}` but string was terminated
|
2023-07-17 00:36:00 +00:00
|
|
|
}
|