summary refs log tree commit diff
path: root/src/test/run-pass/cci_impl_exe.rs
blob: d69982b58de9bcc6e0a5f416a2c17f8ccd71b6e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// xfail-fast - check-fast doesn't understand aux-build
// aux-build:cci_impl_lib.rs

use cci_impl_lib;
import cci_impl_lib::helpers;

fn main() {
    //let bt0 = sys::frame_address();
    //#debug["%?", bt0];

    do 3u.to(10u) |i| {
        io::print(#fmt["%u\n", i]);

        //let bt1 = sys::frame_address();
        //#debug["%?", bt1];
        //assert bt0 == bt1;
    }
}