blob: c4a6ced1ca4c099b8b8585384b3d57dd0179d53b [file] [log] [blame]
error[E0425]: cannot find value `field` in this scope
--> $DIR/resolve-speculative-adjustment.rs:17:13
|
LL | field;
| ^^^^^ not found in this scope
error[E0425]: cannot find function `method` in this scope
--> $DIR/resolve-speculative-adjustment.rs:19:13
|
LL | method();
| ^^^^^^ not found in this scope
error[E0425]: cannot find value `field` in this scope
--> $DIR/resolve-speculative-adjustment.rs:23:9
|
LL | field;
| ^^^^^ help: try: `self.field`
error[E0425]: cannot find function `method` in this scope
--> $DIR/resolve-speculative-adjustment.rs:25:9
|
LL | method();
| ^^^^^^ help: try: `self.method`
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0425`.