rust/src/test/run-pass/vec-push.rs
Brian Anderson ee7d03f7d7 Convert most working tests to ivecs
I tried to pay attention to what was actually being tested so, e.g. when I
test was just using a vec as a boxed thing, I converted to boxed ints, etc.

Haven't converted the macro tests yet. Not sure what to do there.
2011-08-12 16:13:13 -07:00

5 lines
107 B
Rust

fn push[T](v: &mutable [mutable? T], t: &T) { v += ~[t]; }
fn main() { let v = ~[1, 2, 3]; push(v, 1); }