summary refs log tree commit diff
path: root/src/test/run-pass/resource-cycle2.rs
blob: a1dfecb4abad351280da0c3bc5116390d489ae9b (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// 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.

// Don't leak the unique pointers

type u = {
    a: int,
    b: int,
    c: *int
};

struct r {
  v: u,
}

impl r : Drop {
    fn finalize(&self) {
        unsafe {
            let v2: ~int = cast::reinterpret_cast(&self.v.c);
        }
    }
}

fn r(v: u) -> r {
    r {
        v: v
    }
}

enum t = {
    mut next: Option<@t>,
    r: r
};

fn main() unsafe {
    let i1 = ~0xA;
    let i1p = cast::reinterpret_cast(&i1);
    cast::forget(move i1);
    let i2 = ~0xA;
    let i2p = cast::reinterpret_cast(&i2);
    cast::forget(move i2);

    let u1 = {a: 0xB, b: 0xC, c: i1p};
    let u2 = {a: 0xB, b: 0xC, c: i2p};

    let x1 = @t({
        mut next: None,
        r: r(u1)
    });
    let x2 = @t({
        mut next: None,
        r: r(u2)
    });
    x1.next = Some(x2);
    x2.next = Some(x1);
}