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