blob: f17c9fa6ca9378b11f778cc8ff240d66fda4fa9b [file] [log] [blame]
// run-pass
#![feature(start)]
#[start]
pub fn main(_: isize, _: *const *const u8) -> isize {
println!("hello");
0
}