2025-02-09 03:45:40 +00:00
|
|
|
//@ compile-flags: -Copt-level=3
|
2022-07-18 16:17:27 +00:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
// CHECK-LABEL: @box_should_have_noalias_by_default(
|
|
|
|
// CHECK: noalias
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn box_should_have_noalias_by_default(_b: Box<u8>) {}
|