mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			416 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			416 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:crayte.rs
 | |
| //@ edition:2018
 | |
| //@ run-pass
 | |
| extern crate crayte;
 | |
| 
 | |
| use crayte::*;
 | |
| 
 | |
| async fn foo() {
 | |
|     in_foo(out_foo::<3>());
 | |
|     async_simple([0; 17]).await;
 | |
|     async_in_foo(async_out_foo::<4>().await).await;
 | |
| }
 | |
| 
 | |
| #[allow(dead_code)]
 | |
| struct Faz<const N: usize>;
 | |
| 
 | |
| impl<const N: usize> Foo<N> for Faz<N> {}
 | |
| impl<const N: usize> Bar<N> for Faz<N> {
 | |
|     type Assoc = Faz<N>;
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let _ = foo;
 | |
| }
 | 
