mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
196 B
Rust
11 lines
196 B
Rust
// run-pass
|
|
#![allow(unused_mut)]
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo<'a, I>(mut it: I) where I: Iterator<Item=&'a isize> {}
|
|
|
|
fn main() {
|
|
foo([1, 2].iter());
|
|
}
|