Add a test for unique boxes containing shared boxes

Issue #409
This commit is contained in:
Brian Anderson 2011-09-22 14:39:57 -07:00
parent 3f41563cc9
commit 3bb7035914
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
use std;
import std::sys::rustrt::refcount;
fn main() {
let i = ~@1;
let j = ~@2;
let rc1 = refcount(*i);
let j = i;
let rc2 = refcount(*i);
log_err #fmt("rc1: %u rc2: %u", rc1, rc2);
assert rc1 + 1u == rc2;
}