Sign in
rust
/
rust-clippy
/
9eb85122558fd7c3a8909939f9cbe4d0f15d73f3
/
.
/
tests
/
ui
/
map_unit_fn.rs
blob: 3a810196a44db3c37a96bd931aa4b85cc1118172 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
unused
)]
struct
Mappable
;
impl
Mappable
{
pub
fn
map
(&
self
)
{}
}
fn
main
()
{
let
m
=
Mappable
{};
m
.
map
();
}