summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/map_unit_fn.rs
blob: e7f07b50f3ab1fbad149d309b3da9c67bd007950 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![allow(unused)]
struct Mappable;

impl Mappable {
    pub fn map(&self) {}
}

fn main() {
    let m = Mappable {};
    m.map();
}