Files
rust/tests/ui/map_unit_fn.rs

14 lines
148 B
Rust
Raw Normal View History

2025-02-11 17:57:08 +01:00
//@ check-pass
#![allow(unused)]
2022-03-27 14:41:09 +02:00
struct Mappable;
impl Mappable {
pub fn map(&self) {}
}
fn main() {
let m = Mappable {};
m.map();
}