Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
codegen
/
fatptr.rs
blob: 1c49b5714ef51df098a9e888532696a1c825664b [
file
] [
log
] [
blame
]
// compile-flags: -C no-prepopulate-passes
#![
crate_type
=
"lib"
]
pub
trait
T
{}
// CHECK-LABEL: @copy_fat_ptr
#[
no_mangle
]
pub
fn
copy_fat_ptr
(
x
:
&
T
)
{
// CHECK-NOT: extractvalue
let
x2
=
x
;
}