Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
for-loop-while
/
for-loop-no-std.rs
blob: 4511146dc75f4186568ca5fc4fc398838f4385fb [
file
]
//@ 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
}