Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
fmt
/
format-args-capture-issue-94010.rs
blob: bd03e9c93ae2a801187a75710abe22e29bb064bb [
file
] [
log
] [
blame
]
fn
main
()
{
const
FOO
:
i32
=
123
;
println
!(
"{foo:X}"
);
//~^ ERROR: cannot find value `foo` in this scope
println
!(
"{:.foo$}"
,
0
);
//~^ ERROR: cannot find value `foo` in this scope
}