Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
codegen
/
fatptr.rs
blob: 041807202b8414d04065f688049fc67360dad35f [
file
] [
log
] [
blame
] [
edit
]
//@ 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
;
}