Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
native-print-no-runtime.rs
blob: f17c9fa6ca9378b11f778cc8ff240d66fda4fa9b [
file
] [
log
] [
blame
]
// run-pass
#![
feature
(
start
)]
#[
start
]
pub
fn
main
(
_
:
isize
,
_
:
*
const
*
const
u8
)
->
isize
{
println
!(
"hello"
);
0
}