2025-02-08 19:45:40 -08:00
|
|
|
//@ compile-flags: -Copt-level=3
|
2022-07-18 18:17:27 +02: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>) {}
|