summary refs log tree commit diff
path: root/src/test/mir-opt/byte_slice.rs
blob: 317e96d6f52d6ad77d12276554118d0b4650f81e (plain)
1
2
3
4
5
6
7
// compile-flags: -Z mir-opt-level=0

// EMIT_MIR rustc.main.SimplifyCfg-elaborate-drops.after.mir
fn main() {
    let x = b"foo";
    let y = [5u8, b'x'];
}