mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			218 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			218 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| #![allow(unused_braces)]
 | |
| 
 | |
| fn foo(i: isize) -> isize { i + 1 }
 | |
| 
 | |
| fn apply<A, F>(f: F, v: A) -> A where F: FnOnce(A) -> A { f(v) }
 | |
| 
 | |
| pub fn main() {
 | |
|     let f = {|i| foo(i)};
 | |
|     assert_eq!(apply(f, 2), 3);
 | |
| }
 | 
