blob: cbc48b7b8f21e1e0e8ebff655e1f2d7a9e54f4ae [file]
//@ check-pass
struct Mappable;
impl Mappable {
pub fn map(&self) {}
}
fn main() {
let m = Mappable {};
m.map();
}