mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
11 lines
242 B
Rust
11 lines
242 B
Rust
//@ run-pass
|
|
|
|
#![allow(unpredictable_function_pointer_comparisons)]
|
|
|
|
fn main() {
|
|
// We shouldn't promote this
|
|
let _ = &(main as fn() == main as fn());
|
|
// Also check nested case
|
|
let _ = &(&(main as fn()) == &(main as fn()));
|
|
}
|