]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/map_unit_fn.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / map_unit_fn.rs
CommitLineData
f20569fa
XL
1#![allow(unused)]
2struct Mappable {}
3
4impl Mappable {
5 pub fn map(&self) {}
6}
7
8fn main() {
9 let m = Mappable {};
10 m.map();
11}