rust/src/test/ui/consts/const-for.rs
2021-07-29 23:21:54 +02:00

10 lines
206 B
Rust

#![feature(const_for)]
#![feature(const_mut_refs)]
const _: () = {
for _ in 0..5 {}
//~^ error: calls in constants are limited to
//~| error: calls in constants are limited to
};
fn main() {}