]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/unique-vec-res.rs
Ignore tests broken by failing on ICE
[rust.git] / src / test / compile-fail / unique-vec-res.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(managed_boxes)]
12
13 use std::cell::Cell;
14
15 struct r {
16   i: @Cell<int>,
17 }
18
19 #[unsafe_destructor]
20 impl Drop for r {
21     fn drop(&mut self) {
22         unsafe {
23             self.i.set(self.i.get() + 1);
24         }
25     }
26 }
27
28 fn f<T>(_i: Vec<T> , _j: Vec<T> ) {
29 }
30
31 fn main() {
32     let i1 = @Cell::new(0);
33     let i2 = @Cell::new(1);
34     let r1 = vec!(~r { i: i1 });
35     let r2 = vec!(~r { i: i2 });
36     f(r1.clone(), r2.clone());
37     //~^ ERROR failed to find an implementation of
38     println!("{:?}", (r2, i1.get()));
39     println!("{:?}", (r1, i2.get()));
40 }