2024-02-22 12:10:29 +00:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
2015-11-20 21:42:13 +01:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
pub trait T {}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @copy_fat_ptr
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn copy_fat_ptr(x: &T) {
|
2024-05-29 14:11:20 +10:00
|
|
|
// CHECK-NOT: extractvalue
|
2015-11-20 21:42:13 +01:00
|
|
|
let x2 = x;
|
|
|
|
}
|