1
Fork 0

Implement [OsStr]::join

Second attempt at implementing [OsStr]::join.
This commit is contained in:
est31 2022-05-09 22:00:17 +02:00
parent 0dd7e10282
commit cb60e70dc4
3 changed files with 33 additions and 0 deletions

View file

@ -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)]
@ -301,6 +302,7 @@
#![feature(toowned_clone_into)]
#![feature(try_reserve_kind)]
#![feature(vec_into_raw_parts)]
#![feature(slice_concat_trait)]
//
// Library features (unwind):
#![feature(panic_unwind)]