2021-07-29 16:15:53 -05:00
|
|
|
error[E0658]: `for` is not allowed in a `const`
|
2019-11-06 14:29:30 -06:00
|
|
|
--> $DIR/issue-50585.rs:2:18
|
|
|
|
|
|
|
|
|
LL | |y: Vec<[(); for x in 0..2 {}]>| {};
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2021-07-29 16:15:53 -05:00
|
|
|
|
|
|
|
|
= note: see issue #87575 <https://github.com/rust-lang/rust/issues/87575> for more information
|
|
|
|
= help: add `#![feature(const_for)]` to the crate attributes to enable
|
2019-11-06 14:29:30 -06:00
|
|
|
|
2018-06-21 20:18:39 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-50585.rs:2:18
|
2018-06-21 20:18:39 -05:00
|
|
|
|
|
|
|
|
LL | |y: Vec<[(); for x in 0..2 {}]>| {};
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected `usize`, found `()`
|
2018-06-21 20:18:39 -05:00
|
|
|
|
2019-11-06 14:29:30 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2018-06-21 20:18:39 -05:00
|
|
|
|
2021-07-29 16:15:53 -05:00
|
|
|
Some errors have detailed explanations: E0308, E0658.
|
2019-11-06 14:29:30 -06:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|