]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/derefer_complex_case.rs
Add #[const_trait] where needed in tests.
[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 }