From 469f4674fbed038c9d7675f1ae08354a6175b8e9 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Mon, 5 Jul 2021 16:26:54 +0200 Subject: [PATCH] Enable dir_entry_ext2 feature in doc test. Co-authored-by: Yuki Okushi --- library/std/src/os/unix/fs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/os/unix/fs.rs b/library/std/src/os/unix/fs.rs index 3939d3c4ca67a..f0abeba094d22 100644 --- a/library/std/src/os/unix/fs.rs +++ b/library/std/src/os/unix/fs.rs @@ -849,6 +849,7 @@ pub trait DirEntryExt2: Sealed { /// # Examples /// /// ``` + /// #![feature(dir_entry_ext2)] /// use std::os::unix::fs::DirEntryExt2; /// use std::{fs, io}; ///