rust/src/test/auxiliary/issue-2631-a.rs

16 lines
301 B
Rust
Raw Normal View History

2012-06-15 16:55:36 -05:00
#[link(name = "req")];
#[crate_type = "lib"];
use std;
2012-09-05 14:32:05 -05:00
use dvec::*;
use dvec::DVec;
use std::map::hashmap;
2012-06-15 16:55:36 -05:00
2012-08-14 18:54:13 -05:00
type header_map = hashmap<~str, @DVec<@~str>>;
2012-06-15 16:55:36 -05:00
// the unused ty param is necessary so this gets monomorphized
fn request<T: Copy>(req: header_map) {
let _x = *(*req.get(~"METHOD"))[0u];
2012-06-15 16:55:36 -05:00
}