mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
291 B
Rust
19 lines
291 B
Rust
// check-pass
|
|
// compile-flags: -Zmir-opt-level=4 --emit=mir
|
|
#![allow(unused)]
|
|
fn a() -> usize { 0 }
|
|
|
|
fn bar(_: u32) {}
|
|
|
|
fn baz() -> *const dyn Fn(u32) { unimplemented!() }
|
|
|
|
fn foo() {
|
|
match () {
|
|
_ if baz() == &bar as &dyn Fn(u32) => (),
|
|
() => (),
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|