2012-03-02 21:46:42 +00:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
2012-03-01 18:36:22 +00:00
|
|
|
// aux-build:cci_iter_lib.rs
|
|
|
|
|
2012-09-18 22:52:21 +00:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2012-09-12 00:46:20 +00:00
|
|
|
extern mod cci_iter_lib;
|
2012-03-01 18:36:22 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
//let bt0 = sys::rusti::frame_address(1u32);
|
2012-08-23 00:24:52 +00:00
|
|
|
//debug!("%?", bt0);
|
2012-06-30 23:19:07 +00:00
|
|
|
do cci_iter_lib::iter(~[1, 2, 3]) |i| {
|
2012-08-23 00:24:52 +00:00
|
|
|
io::print(fmt!("%d", i));
|
2012-03-01 18:36:22 +00:00
|
|
|
//assert bt0 == sys::rusti::frame_address(2u32);
|
|
|
|
}
|
|
|
|
}
|