Also don't push the paths on the stack directly in `fn parse_external_mod`, return them instead.
20 lines
689 B
Text
20 lines
689 B
Text
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;
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|