//@ known-bug: rust-lang/rust#129095 //@ compile-flags: -Zmir-opt-level=5 -Zvalidate-mir pub fn function_with_bytes() -> &'static [u8] { BYTES } pub fn main() { assert_eq!(function_with_bytes::(), &[0x41, 0x41, 0x41, 0x41]); }