2021-06-10 22:13:16 -05:00
|
|
|
// ignore-windows: No libc on Windows
|
2022-03-17 08:49:10 -05:00
|
|
|
// ignore-apple: `syscall` is not supported on macOS
|
2021-06-10 22:13:16 -05:00
|
|
|
// compile-flags: -Zmiri-panic-on-unsupported
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
extern crate libc;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
libc::syscall(0);
|
|
|
|
}
|
|
|
|
}
|