mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			843 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			843 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error: circular modules: $DIR/circular_modules_main.rs -> $DIR/circular_modules_hello.rs -> $DIR/circular_modules_main.rs
 | |
|   --> $DIR/circular_modules_hello.rs:4:1
 | |
|    |
 | |
| LL | mod circular_modules_main;
 | |
|    | ^^^^^^^^^^^^^^^^^^^^^^^^^^
 | |
| 
 | |
| error[E0425]: cannot find function `hi_str` in module `circular_modules_main`
 | |
|   --> $DIR/circular_modules_hello.rs:7:43
 | |
|    |
 | |
| LL |     println!("{}", circular_modules_main::hi_str());
 | |
|    |                                           ^^^^^^ not found in `circular_modules_main`
 | |
|    |
 | |
| help: consider importing this function
 | |
|    |
 | |
| LL | use hi_str;
 | |
|    |
 | |
| help: if you import `hi_str`, refer to it directly
 | |
|    |
 | |
| LL -     println!("{}", circular_modules_main::hi_str());
 | |
| LL +     println!("{}", hi_str());
 | |
|    |
 | |
| 
 | |
| error: aborting due to 2 previous errors
 | |
| 
 | |
| For more information about this error, try `rustc --explain E0425`.
 | 
