mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ run-pass
 | 
						|
 | 
						|
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
 | 
						|
 | 
						|
use std::ops::Coroutine;
 | 
						|
 | 
						|
fn assert_coroutine<G: Coroutine>(_: G) {
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    assert_coroutine(#[coroutine] static || yield);
 | 
						|
    assert_coroutine(Box::pin(#[coroutine] static || yield));
 | 
						|
}
 |