about summary refs log tree commit diff
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-06-13 01:16:36 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-06-13 01:16:36 +0200
commita6ecde32b94f4155587c97d69f07c3d3cd174203 (patch)
tree02643eb419f3f7a29bc2ae29bbf8267f3a8f98cc
parentd5e9833af388c9f3122877fe355ff7b244c50516 (diff)
downloadrust-a6ecde32b94f4155587c97d69f07c3d3cd174203.tar.gz
rust-a6ecde32b94f4155587c97d69f07c3d3cd174203.zip
Unimplement unsized_locals
-rw-r--r--example/arbitrary_self_types_pointers_and_wrappers.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/example/arbitrary_self_types_pointers_and_wrappers.rs b/example/arbitrary_self_types_pointers_and_wrappers.rs
index 5479b0c617b..f0d1f6e2215 100644
--- a/example/arbitrary_self_types_pointers_and_wrappers.rs
+++ b/example/arbitrary_self_types_pointers_and_wrappers.rs
@@ -32,10 +32,6 @@ impl<T: CoerceUnsized<U>, U> CoerceUnsized<Wrapper<U>> for Wrapper<T> {}
 impl<T: DispatchFromDyn<U>, U> DispatchFromDyn<Wrapper<U>> for Wrapper<T> {}
 
 trait Trait {
-    // This method isn't object-safe yet. Unsized by-value `self` is object-safe (but not callable
-    // without unsized_locals), but wrappers around `Self` currently are not.
-    // FIXME (mikeyhew) uncomment this when unsized rvalues object-safety is implemented
-    // fn wrapper(self: Wrapper<Self>) -> i32;
     fn ptr_wrapper(self: Ptr<Wrapper<Self>>) -> i32;
     fn wrapper_ptr(self: Wrapper<Ptr<Self>>) -> i32;
     fn wrapper_ptr_wrapper(self: Wrapper<Ptr<Wrapper<Self>>>) -> i32;