rust/src/test/ui/bad/bad-expr-path.stderr

32 lines
1006 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0425]: cannot find function `log` in this scope
2018-12-25 08:56:47 -07:00
--> $DIR/bad-expr-path.rs:4:5
2018-08-08 14:28:26 +02:00
|
LL | log(debug, m1::arguments);
| ^^^ not found in this scope
error[E0425]: cannot find value `debug` in this scope
2018-12-25 08:56:47 -07:00
--> $DIR/bad-expr-path.rs:4:9
2018-08-08 14:28:26 +02:00
|
LL | log(debug, m1::arguments);
| ^^^^^ not found in this scope
error[E0425]: cannot find value `arguments` in module `m1`
2018-12-25 08:56:47 -07:00
--> $DIR/bad-expr-path.rs:4:20
2018-08-08 14:28:26 +02:00
|
LL | log(debug, m1::arguments);
| ^^^^^^^^^ not found in `m1`
error[E0580]: main function has wrong type
2018-12-25 08:56:47 -07:00
--> $DIR/bad-expr-path.rs:3:1
2018-08-08 14:28:26 +02:00
|
LL | fn main(arguments: Vec<String>) { //~ ERROR main function has wrong type
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect number of function parameters
|
= note: expected type `fn()`
found type `fn(std::vec::Vec<std::string::String>)`
error: aborting due to 4 previous errors
Some errors occurred: E0425, E0580.
For more information about an error, try `rustc --explain E0425`.