Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
for-loop-while
/
for-loop-no-std.rs
blob: 65a33c5f16f1d35c5d533de8d76b58a967a89598 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unused_imports
)]
#![
feature
(
lang_items
,
start
)]
#![
no_std
]
extern
crate std
as
other
;
#[
macro_use
]
extern
crate alloc
;
#[
start
]
fn
start
(
_argc
:
isize
,
_argv
:
*
const
*
const
u8
)
->
isize
{
for
_ in
[
1
,
2
,
3
].
iter
()
{
}
0
}