Skip to content

Commit

Permalink
add regression test for issue #54685
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke committed Jun 18, 2021
1 parent 0a8629b commit 22029a2
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// min-llvm-version: 12.0
// compile-flags: -C opt-level=3
// run-pass

fn foo(_i: i32) -> i32 {
1
}
fn bar(_i: i32) -> i32 {
1
}

fn main() {
let x: fn(i32) -> i32 = foo;
let y: fn(i32) -> i32 = bar;

let s1;
if x == y {
s1 = "same".to_string();
} else {
s1 = format!("{:?}, {:?}", x, y);
}

let s2;
if x == y {
s2 = "same".to_string();
} else {
s2 = format!("{:?}, {:?}", x, y);
}

assert_eq!(s1, s2);
}

0 comments on commit 22029a2

Please sign in to comment.