mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // edition: 2024
 | |
| // compile-flags: -Zunstable-options
 | |
| #![feature(gen_blocks)]
 | |
| 
 | |
| // async generators are not yet supported, so this test makes sure they make some kind of reasonable
 | |
| // error.
 | |
| 
 | |
| async gen fn foo() {}
 | |
| //~^ `async gen` functions are not supported
 | |
| 
 | |
| fn main() {}
 | 
