We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7616cd9 commit b438811Copy full SHA for b438811
src/libstd/fs.rs
@@ -8,6 +8,7 @@
8
//! extension traits of `std::os::$platform`.
9
10
#![stable(feature = "rust1", since = "1.0.0")]
11
+#![deny(unsafe_op_in_unsafe_fn)]
12
13
use crate::ffi::OsString;
14
use crate::fmt;
src/libstd/lib.rs
@@ -319,6 +319,7 @@
319
#![feature(track_caller)]
320
#![feature(try_reserve)]
321
#![feature(unboxed_closures)]
322
+#![feature(unsafe_block_in_unsafe_fn)]
323
#![feature(untagged_unions)]
324
#![feature(unwind_attributes)]
325
#![feature(vec_into_raw_parts)]
0 commit comments