Sign in
android
/
toolchain
/
rustc
/
977026a81a6cc1c304420586c1bb6527b72b4303
/
.
/
src
/
test
/
codegen
/
noalias-box-off.rs
blob: afd17c7c160749badb7a83c100317022f29badb7 [
file
] [
log
] [
blame
]
// compile-flags: -O -Z box-noalias=no
#![
crate_type
=
"lib"
]
// CHECK-LABEL: @box_should_not_have_noalias_if_disabled(
// CHECK-NOT: noalias
#[
no_mangle
]
pub
fn
box_should_not_have_noalias_if_disabled
(
_b
:
Box
<
u8
>)
{}