Rollup merge of #82220 - henryboisdequin:fixes-80853, r=varkor
fix the false 'defined here' messages Closes #80853. Take this code: ```rust struct S; fn repro_ref(thing: S) { thing(); } ``` Previously, the error message would be this: ``` error[E0618]: expected function, found `S` --> src/lib.rs:4:5 | 3 | fn repro_ref(thing: S) { | ----- `S` defined here 4 | thing(); | ^^^^^-- | | | call expression requires function error: aborting due to previous error ``` This is incorrect as `S` is not defined in the function arguments, `thing` is defined there. With this change, the following is emitted: ``` error[E0618]: expected function, found `S` --> $DIR/80853.rs:4:5 | LL | fn repro_ref(thing: S) { | ----- is of type `S` LL | thing(); | ^^^^^-- | | | call expression requires function | = note: local variable `S` is not a function error: aborting due to previous error ``` As you can see, this error message points out that `thing` is of type `S` and later in a note, that `S` is not a function. This change does seem like a downside for some error messages. Take this example: ``` LL | struct Empty2; | -------------- is of type `Empty2` ``` As you can see, the error message shows that the definition of `Empty2` is of type `Empty2`. Although this isn't wrong, it would be more helpful if it would say something like this (which was there previously): ``` LL | struct Empty2; | -------------- `Empty2` defined here ``` If there is a better way of doing this, where the `Empty2` example would stay the same as without this change, please inform me. **Update: This is now fixed** CC `@camelid`
This commit is contained in:
commit
6bf486711b
11 changed files with 67 additions and 9 deletions
|
@ -4,7 +4,7 @@ use crate::type_error_struct;
|
||||||
|
|
||||||
use rustc_errors::{struct_span_err, Applicability, DiagnosticBuilder};
|
use rustc_errors::{struct_span_err, Applicability, DiagnosticBuilder};
|
||||||
use rustc_hir as hir;
|
use rustc_hir as hir;
|
||||||
use rustc_hir::def::Res;
|
use rustc_hir::def::{Namespace, Res};
|
||||||
use rustc_hir::def_id::{DefId, LOCAL_CRATE};
|
use rustc_hir::def_id::{DefId, LOCAL_CRATE};
|
||||||
use rustc_infer::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
|
use rustc_infer::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
|
||||||
use rustc_infer::{infer, traits};
|
use rustc_infer::{infer, traits};
|
||||||
|
@ -374,7 +374,26 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||||
|p| format!("`{}` defined here returns `{}`", p, callee_ty),
|
|p| format!("`{}` defined here returns `{}`", p, callee_ty),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
_ => Some(format!("`{}` defined here", callee_ty)),
|
_ => {
|
||||||
|
match def {
|
||||||
|
// Emit a different diagnostic for local variables, as they are not
|
||||||
|
// type definitions themselves, but rather variables *of* that type.
|
||||||
|
Res::Local(hir_id) => Some(format!(
|
||||||
|
"`{}` has type `{}`",
|
||||||
|
self.tcx.hir().name(hir_id),
|
||||||
|
callee_ty
|
||||||
|
)),
|
||||||
|
Res::Def(kind, def_id)
|
||||||
|
if kind.ns() == Some(Namespace::ValueNS) =>
|
||||||
|
{
|
||||||
|
Some(format!(
|
||||||
|
"`{}` defined here",
|
||||||
|
self.tcx.def_path_str(def_id),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
_ => Some(format!("`{}` defined here", callee_ty)),
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
if let Some(label) = label {
|
if let Some(label) = label {
|
||||||
err.span_label(span, label);
|
err.span_label(span, label);
|
||||||
|
|
5
src/test/ui/consts/const-as-fn.rs
Normal file
5
src/test/ui/consts/const-as-fn.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
const FOO: usize = 0;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
FOO(); //~ ERROR expected function, found `usize`
|
||||||
|
}
|
14
src/test/ui/consts/const-as-fn.stderr
Normal file
14
src/test/ui/consts/const-as-fn.stderr
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
error[E0618]: expected function, found `usize`
|
||||||
|
--> $DIR/const-as-fn.rs:4:5
|
||||||
|
|
|
||||||
|
LL | const FOO: usize = 0;
|
||||||
|
| --------------------- `FOO` defined here
|
||||||
|
...
|
||||||
|
LL | FOO();
|
||||||
|
| ^^^--
|
||||||
|
| |
|
||||||
|
| call expression requires function
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0618`.
|
|
@ -18,7 +18,7 @@ error[E0618]: expected function, found `i32`
|
||||||
--> $DIR/E0618.rs:9:5
|
--> $DIR/E0618.rs:9:5
|
||||||
|
|
|
|
||||||
LL | let x = 0i32;
|
LL | let x = 0i32;
|
||||||
| - `i32` defined here
|
| - `x` has type `i32`
|
||||||
LL | x();
|
LL | x();
|
||||||
| ^--
|
| ^--
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -2,7 +2,7 @@ error[E0618]: expected function, found `i32`
|
||||||
--> $DIR/issue-10969.rs:2:5
|
--> $DIR/issue-10969.rs:2:5
|
||||||
|
|
|
|
||||||
LL | fn func(i: i32) {
|
LL | fn func(i: i32) {
|
||||||
| - `i32` defined here
|
| - `i` has type `i32`
|
||||||
LL | i();
|
LL | i();
|
||||||
| ^--
|
| ^--
|
||||||
| |
|
| |
|
||||||
|
@ -12,7 +12,7 @@ error[E0618]: expected function, found `i32`
|
||||||
--> $DIR/issue-10969.rs:6:5
|
--> $DIR/issue-10969.rs:6:5
|
||||||
|
|
|
|
||||||
LL | let i = 0i32;
|
LL | let i = 0i32;
|
||||||
| - `i32` defined here
|
| - `i` has type `i32`
|
||||||
LL | i();
|
LL | i();
|
||||||
| ^--
|
| ^--
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -2,7 +2,7 @@ error[E0618]: expected function, found `U`
|
||||||
--> $DIR/issue-21701.rs:2:13
|
--> $DIR/issue-21701.rs:2:13
|
||||||
|
|
|
|
||||||
LL | fn foo<U>(t: U) {
|
LL | fn foo<U>(t: U) {
|
||||||
| - `U` defined here
|
| - `t` has type `U`
|
||||||
LL | let y = t();
|
LL | let y = t();
|
||||||
| ^--
|
| ^--
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -2,7 +2,7 @@ error[E0618]: expected function, found `&str`
|
||||||
--> $DIR/issue-22468.rs:3:13
|
--> $DIR/issue-22468.rs:3:13
|
||||||
|
|
|
|
||||||
LL | let foo = "bar";
|
LL | let foo = "bar";
|
||||||
| --- `&str` defined here
|
| --- `foo` has type `&str`
|
||||||
LL | let x = foo("baz");
|
LL | let x = foo("baz");
|
||||||
| ^^^-------
|
| ^^^-------
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -5,7 +5,7 @@ LL | $not_a_function($some_argument)
|
||||||
| ------------------------------- call expression requires function
|
| ------------------------------- call expression requires function
|
||||||
...
|
...
|
||||||
LL | let mut value_a = 0;
|
LL | let mut value_a = 0;
|
||||||
| ----------- `{integer}` defined here
|
| ----------- `value_a` has type `{integer}`
|
||||||
LL | let mut value_b = 0;
|
LL | let mut value_b = 0;
|
||||||
LL | macro_panic!(value_a, value_b);
|
LL | macro_panic!(value_a, value_b);
|
||||||
| ^^^^^^^
|
| ^^^^^^^
|
||||||
|
|
|
@ -14,7 +14,7 @@ error[E0618]: expected function, found `{integer}`
|
||||||
--> $DIR/parse-error-correct.rs:7:13
|
--> $DIR/parse-error-correct.rs:7:13
|
||||||
|
|
|
|
||||||
LL | let y = 42;
|
LL | let y = 42;
|
||||||
| - `{integer}` defined here
|
| - `y` has type `{integer}`
|
||||||
LL | let x = y.;
|
LL | let x = y.;
|
||||||
LL | let x = y.();
|
LL | let x = y.();
|
||||||
| ^---
|
| ^---
|
||||||
|
|
7
src/test/ui/structs/80853.rs
Normal file
7
src/test/ui/structs/80853.rs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
struct S;
|
||||||
|
|
||||||
|
fn repro_ref(thing: S) {
|
||||||
|
thing(); //~ ERROR expected function, found `S`
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
13
src/test/ui/structs/80853.stderr
Normal file
13
src/test/ui/structs/80853.stderr
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
error[E0618]: expected function, found `S`
|
||||||
|
--> $DIR/80853.rs:4:5
|
||||||
|
|
|
||||||
|
LL | fn repro_ref(thing: S) {
|
||||||
|
| ----- `thing` has type `S`
|
||||||
|
LL | thing();
|
||||||
|
| ^^^^^--
|
||||||
|
| |
|
||||||
|
| call expression requires function
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0618`.
|
Loading…
Add table
Add a link
Reference in a new issue