about summary refs log tree commit diff
path: root/src/test/ui/array-slice-vec/arr_cycle.rs
blob: c262b5a1ff09e66896260dad7899f3d1a1bf3cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// run-pass

use std::cell::Cell;

#[derive(Debug)]
struct B<'a> {
    a: [Cell<Option<&'a B<'a>>>; 2]
}

impl<'a> B<'a> {
    fn new() -> B<'a> {
        B { a: [Cell::new(None), Cell::new(None)] }
    }
}

fn f() {
    let (b1, b2, b3);
    b1 = B::new();
    b2 = B::new();
    b3 = B::new();
    b1.a[0].set(Some(&b2));
    b1.a[1].set(Some(&b3));
    b2.a[0].set(Some(&b2));
    b2.a[1].set(Some(&b3));
    b3.a[0].set(Some(&b1));
    b3.a[1].set(Some(&b2));
}

fn main() {
    f();
}