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.
10 lines
193 B
Rust
10 lines
193 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);
|
|
} |