blob: 09da8509af41207a9bfb1a82301823e938c3a3c4 [file] [log] [blame]
//@ignore-target-windows: No libc on Windows
//@compile-flags: -Zmiri-disable-isolation
// FIXME: standard handles cannot be closed (https://github.com/rust-lang/rust/issues/40032)
fn main() {
unsafe {
libc::close(1); //~ ERROR: cannot close stdout
}
}