mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
10 lines
211 B
Rust
10 lines
211 B
Rust
//@ignore-target-windows: No libc on Windows
|
|
//@ignore-target-apple: `syscall` is not supported on macOS
|
|
//@compile-flags: -Zmiri-panic-on-unsupported
|
|
|
|
fn main() {
|
|
unsafe {
|
|
libc::syscall(0);
|
|
}
|
|
}
|