File tree 2 files changed +1
-3
lines changed
compiler/rustc_interface/src
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
1
// tidy-alphabetical-start
2
2
#![ feature( decl_macro) ]
3
3
#![ feature( let_chains) ]
4
- #![ feature( thread_spawn_unchecked) ]
5
4
#![ feature( try_blocks) ]
6
5
// tidy-alphabetical-end
7
6
Original file line number Diff line number Diff line change @@ -412,7 +412,6 @@ impl Builder {
412
412
/// # Examples
413
413
///
414
414
/// ```
415
- /// #![feature(thread_spawn_unchecked)]
416
415
/// use std::thread;
417
416
///
418
417
/// let builder = thread::Builder::new();
@@ -433,7 +432,7 @@ impl Builder {
433
432
/// ```
434
433
///
435
434
/// [`io::Result`]: crate::io::Result
436
- #[ unstable ( feature = "thread_spawn_unchecked" , issue = "55132 " ) ]
435
+ #[ stable ( feature = "thread_spawn_unchecked" , since = "CURRENT_RUSTC_VERSION " ) ]
437
436
pub unsafe fn spawn_unchecked < F , T > ( self , f : F ) -> io:: Result < JoinHandle < T > >
438
437
where
439
438
F : FnOnce ( ) -> T ,
You can’t perform that action at this time.
0 commit comments