Skip to content

Commit cb771b2

Browse files
committed
[Clippy] Swap open_options to use diagnostic items instead of paths
1 parent 04bd505 commit cb771b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

std/src/fs.rs

+2
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ impl File {
466466
/// ```
467467
#[must_use]
468468
#[stable(feature = "with_options", since = "1.58.0")]
469+
#[cfg_attr(not(test), rustc_diagnostic_item = "file_options")]
469470
pub fn options() -> OpenOptions {
470471
OpenOptions::new()
471472
}
@@ -1009,6 +1010,7 @@ impl OpenOptions {
10091010
/// let mut options = OpenOptions::new();
10101011
/// let file = options.read(true).open("foo.txt");
10111012
/// ```
1013+
#[cfg_attr(not(test), rustc_diagnostic_item = "open_options_new")]
10121014
#[stable(feature = "rust1", since = "1.0.0")]
10131015
#[must_use]
10141016
pub fn new() -> Self {

0 commit comments

Comments
 (0)