rust/src/test/run-pass/obj-with-vec.rs

12 lines
192 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
fn main() {
obj buf(vec[u8] data) {
fn get(int i) -> u8 {
ret data.(i);
}
}
auto b = buf([1 as u8, 2 as u8, 3 as u8]);
2010-06-23 23:03:09 -05:00
log b.get(1);
assert (b.get(1) == (2 as u8));
}