mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
14 lines
214 B
Rust
14 lines
214 B
Rust
pub trait FooMap {
|
|
fn map<B, F: Fn() -> B>(&self, f: F) -> B;
|
|
}
|
|
|
|
impl FooMap for bool {
|
|
fn map<B, F: Fn() -> B>(&self, f: F) -> B {
|
|
f()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let a = true;
|
|
a.map(|| false);
|
|
}
|