summaryrefslogtreecommitdiffstats
path: root/src/test/ui/runtime/native-print-no-runtime.rs
blob: f17c9fa6ca9378b11f778cc8ff240d66fda4fa9b (plain)
1
2
3
4
5
6
7
8
9
// run-pass

#![feature(start)]

#[start]
pub fn main(_: isize, _: *const *const u8) -> isize {
    println!("hello");
    0
}