]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/vec_cycle.rs
Auto merge of #23934 - lfairy:write-no-deref, r=alexcrichton
[rust.git] / src / test / run-pass / vec_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(Show)]
14 struct C<'a> {
15     v: Vec<Cell<Option<&'a C<'a>>>>,
16 }
17
18 impl<'a> C<'a> {
19     fn new() -> C<'a> {
20         C { v: Vec::new() }
21     }
22 }
23
24 fn f() {
25     let (mut c1, mut c2, mut c3);
26     c1 = C::new();
27     c2 = C::new();
28     c3 = C::new();
29
30     c1.v.push(Cell::new(None));
31     c1.v.push(Cell::new(None));
32     c2.v.push(Cell::new(None));
33     c2.v.push(Cell::new(None));
34     c3.v.push(Cell::new(None));
35     c3.v.push(Cell::new(None));
36
37     c1.v[0].set(Some(&c2));
38     c1.v[1].set(Some(&c3));
39     c2.v[0].set(Some(&c2));
40     c2.v[1].set(Some(&c3));
41     c3.v[0].set(Some(&c1));
42     c3.v[1].set(Some(&c2));
43 }
44
45 fn main() {
46     f();
47 }