]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/byte_slice.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / test / mir-opt / byte_slice.rs
1 // compile-flags: -Z mir-opt-level=0
2
3 // EMIT_MIR byte_slice.main.SimplifyCfg-elaborate-drops.after.mir
4 fn main() {
5     let x = b"foo";
6     let y = [5u8, b'x'];
7 }