Somehow this made it into master without being warned: ``` #[stable(feature = "os_string_from_box", since = "1.17.0")] impl<'a> From<Box<OsStr>> for OsString { fn from(boxed: Box<OsStr>) -> OsString { boxed.into_os_string() } } ``` This should definitely trigger a warning.