2012-03-02 15:23:55 -06:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
2012-03-01 12:36:22 -06:00
|
|
|
// aux-build:cci_impl_lib.rs
|
|
|
|
|
|
|
|
use cci_impl_lib;
|
2012-07-11 17:00:40 -05:00
|
|
|
import cci_impl_lib::uint_helpers;
|
2012-03-01 12:36:22 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
//let bt0 = sys::frame_address();
|
2012-07-30 18:01:07 -05:00
|
|
|
//debug!{"%?", bt0};
|
2012-03-01 12:36:22 -06:00
|
|
|
|
2012-06-30 18:19:07 -05:00
|
|
|
do 3u.to(10u) |i| {
|
2012-07-30 18:01:07 -05:00
|
|
|
io::print(fmt!{"%u\n", i});
|
2012-03-01 12:36:22 -06:00
|
|
|
|
|
|
|
//let bt1 = sys::frame_address();
|
2012-07-30 18:01:07 -05:00
|
|
|
//debug!{"%?", bt1};
|
2012-03-01 12:36:22 -06:00
|
|
|
//assert bt0 == bt1;
|
|
|
|
}
|
|
|
|
}
|