rust/tests/ui/issues/issue-54696.rs

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

9 lines
187 B
Rust
Raw Normal View History

//@ run-pass
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()));
}