diff options
| author | est31 <MTest31@outlook.com> | 2022-05-05 21:38:15 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2022-05-05 21:58:11 +0200 |
| commit | 4fcbc53820ab423bbeb41f07822369aa05da1d68 (patch) | |
| tree | 5b1ce1f89361edbe732cdc767ca91c082b4b602e /library/std/src/lib.rs | |
| parent | e1b71feb592ba64805689e2b15b9fa570182c442 (diff) | |
| download | rust-4fcbc53820ab423bbeb41f07822369aa05da1d68.tar.gz rust-4fcbc53820ab423bbeb41f07822369aa05da1d68.zip | |
Implement [OsStr]::join
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 97c30c42282..d70befa9d20 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -241,6 +241,7 @@ #![feature(intra_doc_pointers)] #![feature(lang_items)] #![feature(let_chains)] +#![feature(let_else)] #![feature(linkage)] #![feature(min_specialization)] #![feature(must_not_suspend)] @@ -300,6 +301,7 @@ #![feature(toowned_clone_into)] #![feature(try_reserve_kind)] #![feature(vec_into_raw_parts)] +#![feature(slice_concat_trait)] // // Library features (unwind): #![feature(panic_unwind)] |
