Sign in
fuchsia
/
third_party
/
rust
/
fd8d6fbe505ecf913f5e2ca590c69a7da2789879
/
.
/
tests
/
codegen
/
noalias-box.rs
blob: 06f94691c8956d8c8026c3f203890cfdb9e3f39f [
file
] [
log
] [
blame
]
//@ 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
>)
{}