about summary refs log tree commit diff
path: root/tests/ui/polymorphization/promoted-function-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/polymorphization/promoted-function-3.rs')
-rw-r--r--tests/ui/polymorphization/promoted-function-3.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/ui/polymorphization/promoted-function-3.rs b/tests/ui/polymorphization/promoted-function-3.rs
deleted file mode 100644
index 2ac06d5a139..00000000000
--- a/tests/ui/polymorphization/promoted-function-3.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//@ run-pass
-//@ compile-flags: -Zpolymorphize=on -Zmir-opt-level=4
-
-fn caller<T, U>() -> &'static usize {
-    callee::<U>()
-}
-
-fn callee<T>() -> &'static usize {
-    &std::mem::size_of::<T>()
-}
-
-fn main() {
-    assert_eq!(caller::<(), ()>(), &0);
-}