mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// run-rustfix
 | 
						|
// aux-build:issue-69725.rs
 | 
						|
#![allow(dead_code)]
 | 
						|
 | 
						|
extern crate issue_69725;
 | 
						|
use issue_69725::Struct;
 | 
						|
 | 
						|
fn crash<A>() {
 | 
						|
    let _ = Struct::<A>::new().clone();
 | 
						|
    //~^ ERROR: the method
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |