summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/start.rs
blob: f25d62fa8c33532989ee7f44c14ab69a61c620b8 (plain)
1
2
3
4
5
6
7
8
#![feature(start)]

#[start]
fn start(_: isize, _: *const *const u8) -> isize {
    println!("Hello from start!");

    0
}