2023-07-16 19:36:00 -05: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 16:22:51 -05:00
|
|
|
//~^ ERROR invalid format string: expected `}` but string was terminated
|
2023-07-16 19:36:00 -05:00
|
|
|
}
|