]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/arr_cycle.rs
Remove the in-tree `flate` crate
[rust.git] / src / test / run-pass / arr_cycle.rs
1 // Copyright 2015 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 use std::cell::Cell;
12
13 #[derive(Debug)]
14 struct B<'a> {
15     a: [Cell<Option<&'a B<'a>>>; 2]
16 }
17
18 impl<'a> B<'a> {
19     fn new() -> B<'a> {
20         B { a: [Cell::new(None), Cell::new(None)] }
21     }
22 }
23
24 fn f() {
25     let (b1, b2, b3);
26     b1 = B::new();
27     b2 = B::new();
28     b3 = B::new();
29     b1.a[0].set(Some(&b2));
30     b1.a[1].set(Some(&b3));
31     b2.a[0].set(Some(&b2));
32     b2.a[1].set(Some(&b3));
33     b3.a[0].set(Some(&b1));
34     b3.a[1].set(Some(&b2));
35 }
36
37 fn main() {
38     f();
39 }