mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-20 23:27:43 +00:00
11 lines
143 B
Rust
11 lines
143 B
Rust
// check-pass
|
|
// compile-flags: -Zvalidate-mir
|
|
|
|
fn foo(_a: &str) {}
|
|
|
|
fn main() {
|
|
let x = foo as fn(&'static str);
|
|
|
|
let _ = x == foo;
|
|
}
|