2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(unused_variables)]
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-10-14 15:24:25 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
fn copy<T: Copy>(&x: &T) -> T {
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-03 08:42:26 +00:00
|
|
|
let arr = [(1, 1), (2, 2), (3, 3)];
|
2014-10-14 15:24:25 +00:00
|
|
|
|
|
|
|
let v1: Vec<&_> = arr.iter().collect();
|
|
|
|
let v2: Vec<_> = arr.iter().map(copy).collect();
|
|
|
|
|
|
|
|
let m1: HashMap<_, _> = arr.iter().map(copy).collect();
|
2015-03-26 00:06:52 +00:00
|
|
|
let m2: HashMap<isize, _> = arr.iter().map(copy).collect();
|
|
|
|
let m3: HashMap<_, usize> = arr.iter().map(copy).collect();
|
2014-10-14 15:24:25 +00:00
|
|
|
}
|