rust/src/test/run-pass/obj-with-vec.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

11 lines
192 B
Rust

fn main() {
obj buf(data: [u8]) {
fn get(i: int) -> u8 { ret data[i]; }
}
let b = buf([1 as u8, 2 as u8, 3 as u8]);
log b.get(1);
assert (b.get(1) == 2 as u8);
}