Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
consts
/
const-for.rs
blob: 6f7895457c53d5395b7120dbd4554aaf7e475d4e [
file
] [
log
] [
blame
]
#![
feature
(
const_for
)]
const
_
:
()
=
{
for
_ in
0.
.
5
{}
//~^ ERROR cannot use `for`
//~| ERROR cannot use `for`
};
fn
main
()
{}