mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
8 lines
132 B
Rust
8 lines
132 B
Rust
//@ run-pass
|
|
//@ compile-flags: --test
|
|
|
|
#![feature(start)]
|
|
|
|
#[start]
|
|
fn start(_: isize, _: *const *const u8) -> isize { panic!(); }
|