rust/tests/ui/issues/issue-20261.rs

8 lines
192 B
Rust

fn main() {
// N.B., this (almost) typechecks when default binding modes are enabled.
for (ref i,) in [].iter() {
i.clone();
//~^ ERROR type annotations needed
}
}