rust/tests/fail/fs/write_to_stdin.rs
2022-07-20 15:54:35 +00:00

12 lines
266 B
Rust

//@ignore-target-windows: No libc on Windows
#![feature(rustc_private)]
fn main() -> std::io::Result<()> {
let bytes = b"hello";
unsafe {
libc::write(0, bytes.as_ptr() as *const libc::c_void, 5); //~ ERROR: cannot write to stdin
}
Ok(())
}