mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
345 B
Rust
19 lines
345 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);
|
|
})
|
|
}
|