File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
compiler/rustc_interface/src Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 11// tidy-alphabetical-start
22#![ feature( decl_macro) ]
33#![ feature( let_chains) ]
4- #![ feature( thread_spawn_unchecked) ]
54#![ feature( try_blocks) ]
65// tidy-alphabetical-end
76
Original file line number Diff line number Diff line change @@ -412,7 +412,6 @@ impl Builder {
412412 /// # Examples
413413 ///
414414 /// ```
415- /// #![feature(thread_spawn_unchecked)]
416415 /// use std::thread;
417416 ///
418417 /// let builder = thread::Builder::new();
@@ -433,7 +432,7 @@ impl Builder {
433432 /// ```
434433 ///
435434 /// [`io::Result`]: crate::io::Result
436- #[ unstable ( feature = "thread_spawn_unchecked" , issue = "55132 " ) ]
435+ #[ stable ( feature = "thread_spawn_unchecked" , since = "CURRENT_RUSTC_VERSION " ) ]
437436 pub unsafe fn spawn_unchecked < F , T > ( self , f : F ) -> io:: Result < JoinHandle < T > >
438437 where
439438 F : FnOnce ( ) -> T ,
You can’t perform that action at this time.
0 commit comments