2012-12-10 17:32:48 -08: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-03-22 21:15:28 -04:00
|
|
|
// xfail-test - issue #5512, fails but exits with 0
|
2011-09-09 16:20:11 -07:00
|
|
|
|
2013-03-22 21:15:28 -04:00
|
|
|
// error-pattern:fail
|
2011-09-09 16:20:11 -07:00
|
|
|
|
|
|
|
fn main() {
|
2012-03-26 18:35:18 -07:00
|
|
|
let count = @mut 0u;
|
2013-04-03 09:28:36 -04:00
|
|
|
let mut map = core::hashmap::HashMap::new();
|
2012-06-29 16:26:56 -07:00
|
|
|
let mut arr = ~[];
|
2012-06-30 16:19:07 -07:00
|
|
|
for uint::range(0u, 10u) |i| {
|
2012-07-13 22:57:48 -07:00
|
|
|
arr += ~[@~"key stuff"];
|
2012-12-14 15:10:24 -08:00
|
|
|
map.insert(copy arr, arr + ~[@~"value stuff"]);
|
2012-09-07 17:24:02 -07:00
|
|
|
if arr.len() == 5 {
|
2013-02-11 19:26:38 -08:00
|
|
|
fail!();
|
2012-09-07 17:24:02 -07:00
|
|
|
}
|
2011-10-21 14:12:12 +02:00
|
|
|
}
|
2012-03-07 16:48:57 -08:00
|
|
|
}
|