summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/map_unit_fn.rs
blob: 9a74da4e3b8b641ef4387246ab1f24ea7800de4d (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();
}