2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-17 19:30:29 -05:00
|
|
|
//buggy.rs
|
2013-03-23 20:22:00 -05:00
|
|
|
|
2014-02-19 21:29:58 -06:00
|
|
|
extern crate collections;
|
|
|
|
use collections::HashMap;
|
2012-08-17 19:30:29 -05:00
|
|
|
|
|
|
|
fn main() {
|
2013-08-23 20:31:43 -05:00
|
|
|
let mut buggy_map: HashMap<uint, &uint> = HashMap::new();
|
2014-05-05 20:56:44 -05:00
|
|
|
buggy_map.insert(42, &*box 1); //~ ERROR borrowed value does not live long enough
|
2013-01-22 19:20:08 -06:00
|
|
|
|
2012-08-17 19:30:29 -05:00
|
|
|
// but it is ok if we use a temporary
|
2014-05-05 20:56:44 -05:00
|
|
|
let tmp = box 2;
|
2013-01-22 19:20:08 -06:00
|
|
|
buggy_map.insert(43, &*tmp);
|
2012-08-17 19:30:29 -05:00
|
|
|
}
|