File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 55
55
;;
56
56
std)
57
57
# Modules that we skip because they need a lot of shims we don't support.
58
- SKIP=" fs:: net:: process:: sys::pal :: sys::fd ::"
58
+ SKIP=" fs:: net:: process:: sys::fd :: sys::pal ::"
59
59
60
60
# A 64bit little-endian and a 32bit big-endian target,
61
61
# as well as targets covering all major OSes and both ABIs on Windows.
Original file line number Diff line number Diff line change
1
+ diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs
2
+ index 96fac4f6bde..fbb3ea603ab 100644
3
+ --- a/library/std/src/io/mod.rs
4
+ +++ b/library/std/src/io/mod.rs
5
+ @@ -2335,6 +2335,7 @@ pub trait BufRead: Read {
6
+ /// #![feature(buf_read_has_data_left)]
7
+ /// use std::io;
8
+ /// use std::io::prelude::*;
9
+ + /// # if cfg!(all(miri, windows)) { return Ok(()); } // FIXME(miri-windows-file-access)
10
+ ///
11
+ /// let stdin = io::stdin();
12
+ /// let mut stdin = stdin.lock();
Original file line number Diff line number Diff line change 1
- nightly-2025-05-01
1
+ nightly-2025-05-18
You can’t perform that action at this time.
0 commit comments