Skip to content

Commit 7358983

Browse files
borsgitbot
authored and
gitbot
committed
Auto merge of rust-lang#136248 - matthiaskrgr:rollup-leaxgfd, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - rust-lang#133382 (Suggest considering casting fn item as fn pointer in more cases) - rust-lang#136092 (Test pipes also when not running on Windows and Linux simultaneously) - rust-lang#136190 (Remove duplicated code in RISC-V asm bad-reg test) - rust-lang#136192 (ci: remove unused windows runner) - rust-lang#136205 (Properly check that array length is valid type during built-in unsizing in index) - rust-lang#136211 (Update mdbook to 0.4.44) - rust-lang#136212 (Tweak `&mut self` suggestion span) - rust-lang#136214 (Make crate AST mutation accessible for driver callback) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 109ac8f + 3b89126 commit 7358983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: std/src/io/pipe/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::io::{Read, Write, pipe};
22

33
#[test]
4-
#[cfg(all(windows, unix, not(miri)))]
4+
#[cfg(all(any(unix, windows), not(miri)))]
55
fn pipe_creation_clone_and_rw() {
66
let (rx, tx) = pipe().unwrap();
77

0 commit comments

Comments
 (0)