2022-07-17 21:54:10 -04:00
|
|
|
//@ignore-target-windows: No libc on Windows
|
|
|
|
//@ignore-target-apple: `syscall` is not supported on macOS
|
2022-07-08 16:08:32 +00:00
|
|
|
//@compile-flags: -Zmiri-panic-on-unsupported
|
2021-06-11 11:13:16 +08:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
libc::syscall(0);
|
|
|
|
}
|
|
|
|
}
|