]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/derefer_complex_case.rs
Rollup merge of #106661 - mjguzik:linux_statx, r=Mark-Simulacrum
[rust.git] / tests / 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 }