Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
consts
/
std
/
iter.rs
blob: cf121df0f6c5265da6844cf387005bb068dc6b92 [
file
] [
log
] [
blame
]
//@ run-pass
const
I
:
std
::
iter
::
Empty
<
u32
>
=
std
::
iter
::
empty
();
fn
main
()
{
for
i in I
{
panic
!(
"magical value creation: {}"
,
i
);
}
}