]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/derefer_complex_case.rs
Auto merge of #104765 - chenyukang:yukang-fix-104639-lifetime-check, r=oli-obk
[rust.git] / src / test / mir-opt / derefer_complex_case.rs
1 // unit-test: Derefer
2 // EMIT_MIR derefer_complex_case.main.Derefer.diff
3 // ignore-wasm32
4
5 fn main() {
6     for &foo in &[42, 43] { drop(foo) }
7 }