Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
lint
/
unused
/
issue-90807-unused-paren.rs
blob: 4c0930f967d89ab5a3e018b643dd6a8e7d031776 [
file
] [
log
] [
blame
]
// check-pass
// Make sure unused parens lint doesn't emit a false positive.
// See https://github.com/rust-lang/rust/issues/90807
#![
deny
(
unused_parens
)]
fn
main
()
{
for
_ in
(
1.
.{
2
})
{}
}