rust/tests/ui/runtime/native-print-no-runtime.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
127 B
Rust
Raw Normal View History

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