summary refs log tree commit diff
path: root/src/test/run-pass/native-print-no-runtime.rs
blob: e4d7eb82c67098bbc9d2c49e3319ef3f64021752 (plain)
1
2
3
4
5
6
7
#![feature(start)]

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