We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce35fd commit 7ccf661Copy full SHA for 7ccf661
src/doc/unstable-book/src/language-features/unsized-locals.md
@@ -101,9 +101,9 @@ fn main() {
101
}
102
```
103
104
-And `Foo` will also be object-safe. However, this object-safety is not yet implemented.
+And `Foo` will also be object-safe.
105
106
-```rust,ignore
+```rust
107
#![feature(unsized_locals)]
108
109
trait Foo {
@@ -119,8 +119,6 @@ fn main () {
119
120
121
122
-Unfortunately, this is not implemented yet.
123
-
124
One of the objectives of this feature is to allow `Box<dyn FnOnce>`, instead of `Box<dyn FnBox>` in the future. See [#28796] for details.
125
126
[#28796]: https://github.com/rust-lang/rust/issues/28796
0 commit comments