blob: a35c04b3570b2e542fdf960ec586c5a70bd2e318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> $DIR/const-for.rs:5:14
|
LL | for _ in 0..5 {}
| ^^^^
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> $DIR/const-for.rs:5:14
|
LL | for _ in 0..5 {}
| ^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0015`.
|