rust/tests/mir-opt/storage_ranges.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

// skip-filecheck
2020-07-27 19:22:43 +00:00
// EMIT_MIR storage_ranges.main.nll.0.mir
2020-04-02 21:09:01 +00:00
fn main() {
let a = 0;
{
let b = &Some(a);
}
let c = 1;
}