mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +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);
 | 
						|
    })
 | 
						|
}
 |