mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
19 lines
347 B
Rust
19 lines
347 B
Rust
//@ run-pass
|
|
//@ aux-build:cci_impl_lib.rs
|
|
|
|
extern crate cci_impl_lib;
|
|
use cci_impl_lib::uint_helpers;
|
|
|
|
pub fn main() {
|
|
//let bt0 = sys::frame_address();
|
|
//println!("%?", bt0);
|
|
|
|
3.to(10, |i| {
|
|
println!("{}", i);
|
|
|
|
//let bt1 = sys::frame_address();
|
|
//println!("%?", bt1);
|
|
//assert_eq!(bt0, bt1);
|
|
})
|
|
}
|