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

11 lines
159 B
Rust
Raw Normal View History

2022-08-30 00:57:49 +02:00
// unit-test: DataflowConstProp
// EMIT_MIR issue_81605.f.DataflowConstProp.diff
fn f() -> usize {
1 + if true { 1 } else { 2 }
}
fn main() {
f();
}