mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			233 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			233 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// compile-flags:-Zpolymorphize=on
 | 
						|
// build-pass
 | 
						|
 | 
						|
fn test<T>() {
 | 
						|
    std::mem::size_of::<T>();
 | 
						|
}
 | 
						|
 | 
						|
pub fn foo<T>(_: T) -> &'static fn() {
 | 
						|
    &(test::<T> as fn())
 | 
						|
}
 | 
						|
 | 
						|
fn outer<T>() {
 | 
						|
    foo(|| ());
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    outer::<u8>();
 | 
						|
}
 |