Sign in
rust
/
rust-lang
/
rust
/
refs/heads/main
/
.
/
tests
/
ui
/
fmt
/
format-string-error-3.rs
blob: bd61233a475e39448c23cb173fdf649ec773c885 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn
main
()
{
let
x
=
32
;
println
!(
"{=}"
,
x
);
//~ ERROR invalid format string: python's f-string debug
}