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
|
|
|
|
|
|
|
fn main() {
|
2013-08-17 10:37:42 -05:00
|
|
|
let _count = @mut 0u;
|
2013-05-20 19:07:24 -05:00
|
|
|
let mut map = std::hashmap::HashMap::new();
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut arr = ~[];
|
2013-08-17 10:37:42 -05:00
|
|
|
for _i in range(0u, 10u) {
|
2013-07-23 03:55:15 -05:00
|
|
|
arr.push(@~"key stuff");
|
|
|
|
map.insert(arr.clone(), arr + &[@~"value stuff"]);
|
2012-09-07 19:24:02 -05:00
|
|
|
if arr.len() == 5 {
|
2013-09-29 23:08:46 -05:00
|
|
|
fail2!();
|
2012-09-07 19:24:02 -05:00
|
|
|
}
|
2011-10-21 07:12:12 -05:00
|
|
|
}
|
2012-03-07 18:48:57 -06:00
|
|
|
}
|