Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
map_unit_fn.rs
blob: cbc48b7b8f21e1e0e8ebff655e1f2d7a9e54f4ae [
file
]
//@ check-pass
struct
Mappable
;
impl
Mappable
{
pub
fn
map
(&
self
)
{}
}
fn
main
()
{
let
m
=
Mappable
{};
m
.
map
();
}