mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
18 lines
294 B
Rust
18 lines
294 B
Rust
// run-pass
|
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/2862
|
|
|
|
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);
|
|
}
|