mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
20 lines
310 B
Rust
20 lines
310 B
Rust
use std::fmt::Debug;
|
|
use std::ptr;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
fn a() {}
|
|
|
|
#[warn(clippy::fn_address_comparisons)]
|
|
fn main() {
|
|
type F = fn();
|
|
let f: F = a;
|
|
let g: F = f;
|
|
|
|
// These should fail:
|
|
let _ = f == a;
|
|
let _ = f != a;
|
|
|
|
// These should be fine:
|
|
let _ = f == g;
|
|
}
|