Increase verbosity when suggesting subtle code changes

This commit is contained in:
Esteban Küber 2020-03-11 20:38:21 -07:00
parent 5ae85f43f4
commit 52fbd3e569
32 changed files with 360 additions and 239 deletions

View file

@ -2,7 +2,12 @@ error[E0615]: attempted to take value of method `method` on type `Foo`
--> $DIR/E0615.rs:11:7
|
LL | f.method;
| ^^^^^^ help: use parentheses to call the method: `method()`
| ^^^^^^
|
help: use parentheses to call the method
|
LL | f.method();
| ^^
error: aborting due to previous error