13 lines
		
	
	
		
			176 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			176 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]
 | 
						|
 | 
						|
struct Foo<'a>(&'a ());
 | 
						|
 | 
						|
#[embassy_executor::task]
 | 
						|
async fn task()
 | 
						|
where
 | 
						|
    (): Sized,
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |