]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/circular_modules_main.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / parser / circular_modules_main.stderr
CommitLineData
0bf4aa26 1error: circular modules: $DIR/circular_modules_hello.rs -> $DIR/circular_modules_main.rs -> $DIR/circular_modules_hello.rs
ba9703b0 2 --> $DIR/circular_modules_main.rs:2:1
0bf4aa26 3 |
532ac7d7 4LL | mod circular_modules_hello;
ba9703b0 5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
0bf4aa26 6
ba9703b0
XL
7error[E0425]: cannot find function `say_hello` in module `circular_modules_hello`
8 --> $DIR/circular_modules_main.rs:9:29
9 |
10LL | circular_modules_hello::say_hello();
11 | ^^^^^^^^^ not found in `circular_modules_hello`
12 |
13help: possible candidate is found in another module, you can import it into scope
14 |
15LL | use circular_modules_hello::say_hello;
16 |
17
18error: aborting due to 2 previous errors
0bf4aa26 19
ba9703b0 20For more information about this error, try `rustc --explain E0425`.