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