mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +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;
|
|
}
|