rust/tests/mir-opt/derefer_complex_case.rs

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

8 lines
145 B
Rust
Raw Normal View History

// unit-test: Derefer
// EMIT_MIR derefer_complex_case.main.Derefer.diff
2022-07-12 08:02:17 -05:00
// ignore-wasm32
fn main() {
for &foo in &[42, 43] { drop(foo) }
}