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.
|
|
|
|
|
2013-07-23 03:55:15 -05:00
|
|
|
// exec-env:RUST_NEWRT=1
|
2013-03-22 20:15:28 -05:00
|
|
|
// error-pattern:fail
|
2011-09-09 18:20:11 -05:00
|
|
|
|
2014-04-14 10:30:31 -05:00
|
|
|
#![feature(managed_boxes)]
|
2013-12-12 01:17:54 -06:00
|
|
|
|
2014-03-21 06:37:41 -05:00
|
|
|
use std::vec;
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::collections;
|
2014-06-11 21:33:52 -05:00
|
|
|
use std::gc::GC;
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2011-09-09 18:20:11 -05:00
|
|
|
fn main() {
|
2014-06-11 21:33:52 -05:00
|
|
|
let _count = box(GC) 0u;
|
2014-02-19 21:29:58 -06:00
|
|
|
let mut map = collections::HashMap::new();
|
2014-03-05 16:02:44 -06:00
|
|
|
let mut arr = Vec::new();
|
2013-08-17 10:37:42 -05:00
|
|
|
for _i in range(0u, 10u) {
|
2014-06-11 21:33:52 -05:00
|
|
|
arr.push(box(GC) "key stuff".to_string());
|
2014-03-05 17:28:08 -06:00
|
|
|
map.insert(arr.clone(),
|
2014-06-11 21:33:52 -05:00
|
|
|
arr.clone().append([box(GC) "value stuff".to_string()]));
|
2012-09-07 19:24:02 -05:00
|
|
|
if arr.len() == 5 {
|
2013-10-21 15:08:31 -05:00
|
|
|
fail!();
|
2012-09-07 19:24:02 -05:00
|
|
|
}
|
2011-10-21 07:12:12 -05:00
|
|
|
}
|
2012-03-07 18:48:57 -06:00
|
|
|
}
|