rust/tests/ui/issues/auxiliary/issue-2631-a.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
385 B
Rust
Raw Normal View History

#![crate_name="req"]
#![crate_type = "lib"]
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;
pub type header_map = HashMap<String, Rc<RefCell<Vec<Rc<String>>>>>;
// the unused ty param is necessary so this gets monomorphized
pub fn request<T>(req: &header_map) {
let data = req[&"METHOD".to_string()].clone();
let _x = data.borrow().clone()[0].clone();
}