about summary refs log tree commit diff
path: root/tests/codegen-llvm/noalias-box.rs
blob: cccde775977a12b9979034073cbb775ff0242080 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -Copt-level=3

#![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>) {}