rust/tests/ui/mir/validate/issue-95978-validator-lifetime-comparison.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
143 B
Rust
Raw Normal View History

// check-pass
// compile-flags: -Zvalidate-mir
fn foo(_a: &str) {}
fn main() {
let x = foo as fn(&'static str);
let _ = x == foo;
}