mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-03 13:43:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			444 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			444 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Regression test for #72911.
 | 
						|
 | 
						|
pub struct Lint {}
 | 
						|
 | 
						|
impl Lint {}
 | 
						|
 | 
						|
pub fn gather_all() -> impl Iterator<Item = Lint> {
 | 
						|
    lint_files().flat_map(|f| gather_from_file(&f))
 | 
						|
}
 | 
						|
 | 
						|
fn gather_from_file(dir_entry: &foo::MissingItem) -> impl Iterator<Item = Lint> {
 | 
						|
    //~^ ERROR: failed to resolve
 | 
						|
    unimplemented!()
 | 
						|
}
 | 
						|
 | 
						|
fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
 | 
						|
    //~^ ERROR: failed to resolve
 | 
						|
    unimplemented!()
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |