mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: functions cannot be both `const` and `async`
 | 
						|
  --> $DIR/no-const-async.rs:4:5
 | 
						|
   |
 | 
						|
LL | pub const async fn x() {}
 | 
						|
   | ----^^^^^-^^^^^----------
 | 
						|
   |     |     |
 | 
						|
   |     |     `async` because of this
 | 
						|
   |     `const` because of this
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 |