mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
345 B
Rust
18 lines
345 B
Rust
// run-pass
|
|
|
|
// aux-build:issue-2631-a.rs
|
|
|
|
extern crate req;
|
|
|
|
use req::request;
|
|
use std::cell::RefCell;
|
|
use std::collections::HashMap;
|
|
use std::rc::Rc;
|
|
|
|
pub fn main() {
|
|
let v = vec![Rc::new("hi".to_string())];
|
|
let mut m: req::header_map = HashMap::new();
|
|
m.insert("METHOD".to_string(), Rc::new(RefCell::new(v)));
|
|
request::<isize>(&m);
|
|
}
|