2023-10-16 12:36:39 -05:00
|
|
|
// skip-filecheck
|
2023-09-07 00:14:40 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_BIT_WIDTH
|
|
|
|
|
2024-07-14 07:38:51 -05:00
|
|
|
#![feature(adt_const_params, unsized_const_params)]
|
2022-07-26 02:05:31 -05:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
pub fn function_with_bytes<const BYTES: &'static [u8; 4]>() -> &'static [u8] {
|
|
|
|
BYTES
|
|
|
|
}
|
|
|
|
|
2022-09-04 22:00:31 -05:00
|
|
|
// EMIT_MIR issue_99325.main.built.after.mir
|
2022-07-26 02:05:31 -05:00
|
|
|
pub fn main() {
|
|
|
|
assert_eq!(function_with_bytes::<b"AAAA">(), &[0x41, 0x41, 0x41, 0x41]);
|
|
|
|
assert_eq!(function_with_bytes::<{ &[0x41, 0x41, 0x41, 0x41] }>(), b"AAAA");
|
|
|
|
}
|