about summary refs log tree commit diff
path: root/src/test/codegen-units/item-collection/instantiation-through-vtable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen-units/item-collection/instantiation-through-vtable.rs')
-rw-r--r--src/test/codegen-units/item-collection/instantiation-through-vtable.rs38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/codegen-units/item-collection/instantiation-through-vtable.rs b/src/test/codegen-units/item-collection/instantiation-through-vtable.rs
deleted file mode 100644
index e78226d4083..00000000000
--- a/src/test/codegen-units/item-collection/instantiation-through-vtable.rs
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// compile-flags:-Zprint-mono-items=eager -Zinline-in-all-cgus -Zmir-opt-level=0
-
-#![deny(dead_code)]
-#![feature(start)]
-
-trait Trait {
-    fn foo(&self) -> u32;
-    fn bar(&self);
-}
-
-struct Struct<T> {
-    _a: T
-}
-
-impl<T> Trait for Struct<T> {
-    fn foo(&self) -> u32 { 0 }
-    fn bar(&self) {}
-}
-
-//~ MONO_ITEM fn start
-#[start]
-fn start(_: isize, _: *const *const u8) -> isize {
-    let s1 = Struct { _a: 0u32 };
-
-    //~ MONO_ITEM fn std::ptr::drop_in_place::<Struct<u32>> - shim(None) @@ instantiation_through_vtable-cgu.0[Internal]
-    //~ MONO_ITEM fn <Struct<u32> as Trait>::foo
-    //~ MONO_ITEM fn <Struct<u32> as Trait>::bar
-    let _ = &s1 as &Trait;
-
-    let s1 = Struct { _a: 0u64 };
-    //~ MONO_ITEM fn std::ptr::drop_in_place::<Struct<u64>> - shim(None) @@ instantiation_through_vtable-cgu.0[Internal]
-    //~ MONO_ITEM fn <Struct<u64> as Trait>::foo
-    //~ MONO_ITEM fn <Struct<u64> as Trait>::bar
-    let _ = &s1 as &Trait;
-
-    0
-}