Sign in
rust
/
rust
/
97600964b5f19f3d7a0ab32e820e4fed1322770e
/
.
/
tests
/
codegen-llvm
/
noalias-box.rs
blob: cccde775977a12b9979034073cbb775ff0242080 [
file
]
//@ 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
>)
{}