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
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2013-02-01 01:13:36 -06:00
|
|
|
use std::oldmap::HashMap;
|
2012-08-17 19:30:29 -05:00
|
|
|
|
|
|
|
fn main() {
|
2012-09-10 17:38:28 -05:00
|
|
|
let buggy_map :HashMap<uint, &uint> =
|
|
|
|
HashMap::<uint, &uint>();
|
2013-01-22 19:20:08 -06:00
|
|
|
buggy_map.insert(42, &*~1); //~ ERROR illegal borrow
|
|
|
|
|
2012-08-17 19:30:29 -05:00
|
|
|
// but it is ok if we use a temporary
|
|
|
|
let tmp = ~2;
|
2013-01-22 19:20:08 -06:00
|
|
|
buggy_map.insert(43, &*tmp);
|
2012-08-17 19:30:29 -05:00
|
|
|
}
|