Skip to content

Commit 99123da

Browse files
committed
BufRead doctets: avoid Miri failure on Windows due to missing FS support
1 parent ac17c34 commit 99123da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/std/src/io/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,6 +2335,7 @@ pub trait BufRead: Read {
23352335
/// #![feature(buf_read_has_data_left)]
23362336
/// use std::io;
23372337
/// use std::io::prelude::*;
2338+
/// # if cfg!(all(miri, windows)) { return; } // FIXME(miri-windows-file-access)
23382339
///
23392340
/// let stdin = io::stdin();
23402341
/// let mut stdin = stdin.lock();

0 commit comments

Comments
 (0)