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