]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/bad-expr-path.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / bad-expr-path.stderr
1 error[E0425]: cannot find value `debug` in this scope
2   --> $DIR/bad-expr-path.rs:4:9
3    |
4 LL |     log(debug, m1::arguments);
5    |         ^^^^^ not found in this scope
6
7 error[E0425]: cannot find value `arguments` in module `m1`
8   --> $DIR/bad-expr-path.rs:4:20
9    |
10 LL |     log(debug, m1::arguments);
11    |                    ^^^^^^^^^ not found in `m1`
12
13 error[E0425]: cannot find function `log` in this scope
14   --> $DIR/bad-expr-path.rs:4:5
15    |
16 LL |     log(debug, m1::arguments);
17    |     ^^^ not found in this scope
18
19 error[E0580]: `main` function has wrong type
20   --> $DIR/bad-expr-path.rs:3:1
21    |
22 LL | fn main(arguments: Vec<String>) {
23    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect number of function parameters
24    |
25    = note: expected fn pointer `fn()`
26               found fn pointer `fn(Vec<String>)`
27
28 error: aborting due to 4 previous errors
29
30 Some errors have detailed explanations: E0425, E0580.
31 For more information about an error, try `rustc --explain E0425`.