rust/src/test/ui/issues/issue-20261.rs
2018-12-25 21:08:33 -07:00

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
}
}