mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			150 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			150 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ known-bug: #119783
 | 
						|
#![feature(associated_const_equality)]
 | 
						|
 | 
						|
trait Trait { const F: fn(); }
 | 
						|
 | 
						|
fn take(_: impl Trait<F = { || {} }>) {}
 | 
						|
 | 
						|
fn main() {}
 |