mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
11 lines
200 B
Rust
11 lines
200 B
Rust
//@ skip-filecheck
|
|
//@ test-mir-pass: Derefer
|
|
// EMIT_MIR derefer_complex_case.main.Derefer.diff
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
|
|
fn main() {
|
|
for &foo in &[42, 43] {
|
|
drop(foo)
|
|
}
|
|
}
|