2022-04-28 02:54:28 -05:00
|
|
|
error[E0425]: cannot find function `foo` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:16:9
|
|
|
|
|
|
|
|
|
LL | foo();
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
2023-09-22 20:54:05 -05:00
|
|
|
help: consider using the associated function on `Self`
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
|
LL | Self::foo();
|
2022-10-25 11:15:47 -05:00
|
|
|
| ++++++
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
error[E0425]: cannot find function `bar` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:17:9
|
|
|
|
|
|
2023-09-22 20:47:06 -05:00
|
|
|
LL | fn bar(&self) {}
|
|
|
|
| --- a method by that name is available on `Self` here
|
|
|
|
...
|
2023-09-22 20:34:50 -05:00
|
|
|
LL | bar();
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:18:9
|
|
|
|
|
|
|
|
|
LL | baz(2, 3);
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
2023-09-22 20:54:05 -05:00
|
|
|
help: consider using the associated function on `Self`
|
2023-09-22 20:34:50 -05:00
|
|
|
|
|
|
|
|
LL | Self::baz(2, 3);
|
|
|
|
| ++++++
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `foo` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:14:13
|
|
|
|
|
|
|
|
|
LL | foo();
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `foo` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:24:9
|
|
|
|
|
|
|
|
|
LL | foo();
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
2023-09-22 20:54:05 -05:00
|
|
|
help: consider using the associated function on `Self`
|
2023-09-22 20:34:50 -05:00
|
|
|
|
|
|
|
|
LL | Self::foo();
|
|
|
|
| ++++++
|
|
|
|
|
|
|
|
error[E0425]: cannot find function `bar` in this scope
|
|
|
|
--> $DIR/assoc_fn_without_self.rs:25:9
|
|
|
|
|
|
2022-04-28 02:54:28 -05:00
|
|
|
LL | bar();
|
|
|
|
| ^^^ not found in this scope
|
2022-10-25 11:15:47 -05:00
|
|
|
|
|
2023-09-22 20:54:05 -05:00
|
|
|
help: consider using the method on `Self`
|
2022-10-25 11:15:47 -05:00
|
|
|
|
|
|
|
|
LL | self.bar();
|
|
|
|
| +++++
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
error[E0425]: cannot find function `baz` in this scope
|
2023-09-22 20:34:50 -05:00
|
|
|
--> $DIR/assoc_fn_without_self.rs:26:9
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
|
LL | baz(2, 3);
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
2023-09-22 20:54:05 -05:00
|
|
|
help: consider using the associated function on `Self`
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
|
LL | Self::baz(2, 3);
|
2022-10-25 11:15:47 -05:00
|
|
|
| ++++++
|
2022-04-28 02:54:28 -05:00
|
|
|
|
2022-10-05 00:35:34 -05:00
|
|
|
error[E0425]: cannot find function `foo` in this scope
|
2023-09-22 20:34:50 -05:00
|
|
|
--> $DIR/assoc_fn_without_self.rs:22:13
|
2022-10-05 00:35:34 -05:00
|
|
|
|
|
|
|
|
LL | foo();
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
2023-09-22 20:34:50 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2022-04-28 02:54:28 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|