rust/src/test/run-pass/cci_iter_exe.rs
2012-07-30 18:38:15 -07:00

14 lines
334 B
Rust

// xfail-fast - check-fast doesn't understand aux-build
// aux-build:cci_iter_lib.rs
use cci_iter_lib;
fn main() {
//let bt0 = sys::rusti::frame_address(1u32);
//debug!{"%?", bt0};
do cci_iter_lib::iter(~[1, 2, 3]) |i| {
io::print(fmt!{"%d", i});
//assert bt0 == sys::rusti::frame_address(2u32);
}
}