2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:21:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:30:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | x;
|
2019-04-18 00:22:16 +00:00
|
|
|
| ^ help: you might have meant to use the available field: `self.x`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:32:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | y;
|
2019-04-18 00:22:16 +00:00
|
|
|
| ^ help: you might have meant to use the available field: `self.y`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:34:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:36:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:38:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | b;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `x` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:47:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | x;
|
2019-04-18 00:22:16 +00:00
|
|
|
| ^ help: you might have meant to use the available field: `self.x`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `y` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:49:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | y;
|
2019-04-18 00:22:16 +00:00
|
|
|
| ^ help: you might have meant to use the available field: `self.y`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `a` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:51:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:53:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `b` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14254.rs:55:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | b;
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:64:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2022-10-05 05:35:34 +00:00
|
|
|
--> $DIR/issue-14254.rs:73:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:82:9
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
2022-10-05 05:35:34 +00:00
|
|
|
--> $DIR/issue-14254.rs:91:9
|
|
|
|
|
|
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2022-10-05 05:35:34 +00:00
|
|
|
|
|
|
|
error[E0425]: cannot find value `bah` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:100:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | bah;
|
2022-10-21 13:43:58 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to refer to the associated function
|
|
|
|
|
|
|
|
|
LL | Self::bah;
|
|
|
|
| ~~~~~~~~~
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2022-10-05 05:35:34 +00:00
|
|
|
--> $DIR/issue-14254.rs:19:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | baz();
|
2020-10-26 23:28:56 +00:00
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:28:9
|
2017-11-20 12:13:27 +00:00
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
LL | baz();
|
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2022-10-05 05:35:34 +00:00
|
|
|
--> $DIR/issue-14254.rs:45:9
|
2017-12-10 20:29:24 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | baz();
|
2020-10-26 23:28:56 +00:00
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:62:9
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
LL | baz();
|
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2022-10-05 05:35:34 +00:00
|
|
|
--> $DIR/issue-14254.rs:71:9
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | baz();
|
2020-10-26 23:28:56 +00:00
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:80:9
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
LL | baz();
|
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:89:9
|
|
|
|
|
|
|
|
|
LL | baz();
|
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/issue-14254.rs:98:9
|
|
|
|
|
|
|
|
|
LL | baz();
|
|
|
|
| ^^^ help: you might have meant to call the method: `self.baz`
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-03-12 20:21:43 +00:00
|
|
|
error: aborting due to 24 previous errors
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-03-12 20:21:43 +00:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|