blob: 91efe04efc8f5a331c0abdbf28df55bb9793214e [file]
//@ 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: &dyn T) {
// CHECK-NOT: extractvalue
let x2 = x;
}