Sign in
fuchsia
/
third_party
/
rust
/
8ae7c743bbc6e6281c5aa892daaaa5439aafc1db
/
.
/
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
;
}