2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-02 00:09:08 +00:00
rust-clippy/tests/ui/fn_address_comparisons.rs
2020-03-30 21:42:16 +02:00

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;
}