Sign in
android
/
toolchain
/
rustc
/
951ae7a5eefab93734d1309f0497487f13f59fbf
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-8821.fixed
blob: a25bb46f9ff7bfac565d5eb1bf7116a3fe6a2d40 [
file
] [
log
] [
blame
]
#![warn(clippy::let_unit_value)]
fn f
()
{}
static
FN
:
fn
()
=
f
;
fn main
()
{
FN
();
//~^ ERROR: this let-binding has unit value
//~| NOTE: `-D clippy::let-unit-value` implied by `-D warnings`
}