1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-23 21:12:28 +00:00
deprecated-gotham-restful/tests/ui/method_self.stderr

14 lines
378 B
Text
Raw Normal View History

error: Didn't expect self parameter
--> $DIR/method_self.rs:8:13
|
8 | fn read_all(self)
| ^^^^
2020-11-23 01:22:03 +01:00
error: `self` parameter is only allowed in associated functions
--> $DIR/method_self.rs:8:13
|
2020-11-23 01:22:03 +01:00
8 | fn read_all(self)
| ^^^^ not semantically valid as function parameter
|
2020-11-23 01:22:03 +01:00
= note: associated functions are those in `impl` or `trait` definitions