blob: 27fd452c8edcdfbe570654a2d04e319da58df8d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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];
cci_iter_lib::iter([1, 2, 3]) {|i|
io::print(#fmt["%d", i]);
//assert bt0 == sys::rusti::frame_address(2u32);
}
}
|