If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not.
31 lines
976 B
Text
31 lines
976 B
Text
error[E0425]: cannot find function `log` in this scope
|
|
--> $DIR/bad-expr-path.rs:4:5
|
|
|
|
|
LL | log(debug, m1::arguments);
|
|
| ^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `debug` in this scope
|
|
--> $DIR/bad-expr-path.rs:4:9
|
|
|
|
|
LL | log(debug, m1::arguments);
|
|
| ^^^^^ not found in this scope
|
|
|
|
error[E0425]: cannot find value `arguments` in module `m1`
|
|
--> $DIR/bad-expr-path.rs:4:20
|
|
|
|
|
LL | log(debug, m1::arguments);
|
|
| ^^^^^^^^^ not found in `m1`
|
|
|
|
error[E0580]: `main` function has wrong type
|
|
--> $DIR/bad-expr-path.rs:3:1
|
|
|
|
|
LL | fn main(arguments: Vec<String>) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ incorrect number of function parameters
|
|
|
|
|
= note: expected fn pointer `fn()`
|
|
found fn pointer `fn(Vec<String>)`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
Some errors have detailed explanations: E0425, E0580.
|
|
For more information about an error, try `rustc --explain E0425`.
|