mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			167 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			167 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ run-pass
 | 
						|
 | 
						|
fn foo() -> isize { 22 }
 | 
						|
 | 
						|
pub fn main() {
 | 
						|
    let mut x: Vec<extern "Rust" fn() -> isize> = Vec::new();
 | 
						|
    x.push(foo);
 | 
						|
    assert_eq!((x[0])(), 22);
 | 
						|
}
 |