Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
std
/
iter.rs
blob: e9af781eb2b8d40a1ab786332b7d22742298e9fd [
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
);
}
}