Remove run-pass/vec-ref-count.rs

This test will be irellevant when vecs are gone
This commit is contained in:
Brian Anderson 2011-08-11 20:31:47 -07:00
parent a679ea5c3c
commit fc7664e4c6

View file

@ -1,12 +0,0 @@
use std;
import std::vec;
fn main() {
let v = [1, 2, 3];
log_err vec::refcount[int](v);
log_err vec::refcount[int](v);
log_err vec::refcount[int](v);
assert (vec::refcount[int](v) == 1u || vec::refcount[int](v) == 2u);
assert (vec::refcount[int](v) == 1u || vec::refcount[int](v) == 2u);
}