mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 03:32:21 +00:00
11 lines
199 B
Rust
11 lines
199 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)
|
|
}
|
|
}
|