]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/map_unit_fn.rs
Merge commit 'f2cdd4a78d89c009342197cf5844a21f8aa813df' into sync_cg_clif-2022-04-22
[rust.git] / src / tools / clippy / tests / ui / map_unit_fn.rs
1 #![allow(unused)]
2 struct Mappable;
3
4 impl Mappable {
5     pub fn map(&self) {}
6 }
7
8 fn main() {
9     let m = Mappable {};
10     m.map();
11 }