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