mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 02:07:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			599 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			599 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error[E0423]: expected value, found struct `remapped_dep::SomeStruct`
 | 
						|
  --> $DIR/remap-path-prefix-reverse.rs:16:13
 | 
						|
   |
 | 
						|
LL |     let _ = remapped_dep::SomeStruct; // ~ERROR E0423
 | 
						|
   |             ^^^^^^^^^^^^^^^^^^^^^^^^ help: use struct literal syntax instead: `remapped_dep::SomeStruct {}`
 | 
						|
   |
 | 
						|
  ::: remapped-aux/remapped_dep.rs:4:1
 | 
						|
   |
 | 
						|
LL | pub struct SomeStruct {} // This line should be show as part of the error.
 | 
						|
   | --------------------- `remapped_dep::SomeStruct` defined here
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 | 
						|
For more information about this error, try `rustc --explain E0423`.
 |