2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2019-07-24 08:26:32 +00:00
|
|
|
// Here we test that the parser is able to recover in a situation like
|
|
|
|
// `for ( $pat in $expr )` since that is familiar syntax in other languages.
|
|
|
|
// Instead we suggest that the user writes `for $pat in $expr`.
|
|
|
|
|
|
|
|
#![deny(unused)] // Make sure we don't trigger `unused_parens`.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let vec = vec![1, 2, 3];
|
|
|
|
|
2023-11-06 23:41:49 +00:00
|
|
|
for ( _elem in vec ) {
|
|
|
|
//~^ ERROR unexpected parentheses surrounding `for` loop head
|
|
|
|
const _RECOVERY_WITNESS: u32 = 0u8; //~ ERROR mismatched types
|
2019-07-24 08:26:32 +00:00
|
|
|
}
|
|
|
|
}
|