Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
consts
/
const-for.rs
blob: b6d5ca70cfeb3134168a6a83fbb802466da6c31c [
file
]
#![
feature
(
const_for
)]
const
_
:
()
=
{
for
_ in
0.
.
5
{}
//~^ ERROR `std::ops::Range<{integer}>: const Iterator` is not satisfied
//~| ERROR `std::ops::Range<{integer}>: const Iterator` is not satisfied
};
fn
main
()
{}