mark fix as MaybeIncorrect

This commit is contained in:
csmoe 2018-10-01 09:08:26 +08:00
parent 912691b3ff
commit 4470b1cec0
2 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ LL | this.x
| ^^^^
| |
| not found in this scope
| help: do you mean: `self`
| help: did you mean: `self`
error[E0425]: cannot find value `this` in this scope
--> $DIR/suggest-self.rs:36:9
@ -14,7 +14,7 @@ LL | this.foo()
| ^^^^
| |
| not found in this scope
| help: do you mean: `self`
| help: did you mean: `self`
error[E0425]: cannot find value `my` in this scope
--> $DIR/suggest-self.rs:41:9
@ -23,7 +23,7 @@ LL | my.bar()
| ^^
| |
| not found in this scope
| help: do you mean: `self`
| help: did you mean: `self`
error: aborting due to 3 previous errors