mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| // aux-build:xcrate-reachable.rs
 | |
| 
 | |
| #![feature(coroutine_trait)]
 | |
| 
 | |
| extern crate xcrate_reachable as foo;
 | |
| 
 | |
| use std::ops::Coroutine;
 | |
| use std::pin::Pin;
 | |
| 
 | |
| fn main() {
 | |
|     Pin::new(&mut foo::foo()).resume(());
 | |
| }
 | 
