mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-pass
 | 
						|
// edition:2021
 | 
						|
 | 
						|
#![allow(incomplete_features)]
 | 
						|
 | 
						|
use std::fmt::Debug;
 | 
						|
 | 
						|
trait Foo {
 | 
						|
    #[allow(async_fn_in_trait)]
 | 
						|
    async fn baz(&self) -> &str {
 | 
						|
        ""
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
struct Bar;
 | 
						|
 | 
						|
impl Foo for Bar {}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let _ = Bar.baz();
 | 
						|
}
 |