mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 23:23:18 +00:00
10 lines
151 B
Rust
10 lines
151 B
Rust
//@ run-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
#![feature(start)]
|
|
|
|
#[start]
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
|
return 0;
|
|
}
|