summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-8821.rs
blob: 082f7c92646a6b60e664e588a49bedbc8ed0d606 (plain)
1
2
3
4
5
6
7
8
9
10
#![warn(clippy::let_unit_value)]

fn f() {}
static FN: fn() = f;

fn main() {
    let _: () = FN();
    //~^ ERROR: this let-binding has unit value
    //~| NOTE: `-D clippy::let-unit-value` implied by `-D warnings`
}