Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
codegen
/
noalias-box.rs
blob: 06f94691c8956d8c8026c3f203890cfdb9e3f39f [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -O
#![
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
>)
{}