]> git.lizzy.rs Git - rust.git/blob - src/test/ui/native-print-no-runtime.rs
Rollup merge of #62663 - llogiq:more-questionmark-docs, r=GuillaumeGomez
[rust.git] / src / test / ui / native-print-no-runtime.rs
1 // run-pass
2
3 #![feature(start)]
4
5 #[start]
6 pub fn main(_: isize, _: *const *const u8) -> isize {
7     println!("hello");
8     0
9 }