mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-28 07:30:57 +00:00
94 lines
2.6 KiB
Text
94 lines
2.6 KiB
Text
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:11:5
|
|
|
|
|
LL | / fn a(&self) -> &u8 {
|
|
LL | | &self.b
|
|
| | ------- help: consider using: `&self.a`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::missnamed-getters` implied by `-D warnings`
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:14:5
|
|
|
|
|
LL | / fn a_mut(&mut self) -> &mut u8 {
|
|
LL | | &mut self.b
|
|
| | ----------- help: consider using: `&mut self.a`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:18:5
|
|
|
|
|
LL | / fn b(self) -> u8 {
|
|
LL | | self.a
|
|
| | ------ help: consider using: `self.b`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:22:5
|
|
|
|
|
LL | / fn b_mut(&mut self) -> &mut u8 {
|
|
LL | | &mut self.a
|
|
| | ----------- help: consider using: `&mut self.b`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:26:5
|
|
|
|
|
LL | / fn c(&self) -> &u8 {
|
|
LL | | &self.b
|
|
| | ------- help: consider using: `&self.c`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:30:5
|
|
|
|
|
LL | / fn c_mut(&mut self) -> &mut u8 {
|
|
LL | | &mut self.a
|
|
| | ----------- help: consider using: `&mut self.c`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:41:5
|
|
|
|
|
LL | / unsafe fn a(&self) -> &u8 {
|
|
LL | | &self.b
|
|
| | ------- help: consider using: `&self.a`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:44:5
|
|
|
|
|
LL | / unsafe fn a_mut(&mut self) -> &mut u8 {
|
|
LL | | &mut self.b
|
|
| | ----------- help: consider using: `&mut self.a`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:48:5
|
|
|
|
|
LL | / unsafe fn b(self) -> u8 {
|
|
LL | | self.a
|
|
| | ------ help: consider using: `self.b`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: getter function appears to return the wrong field
|
|
--> $DIR/missnamed_getters.rs:52:5
|
|
|
|
|
LL | / unsafe fn b_mut(&mut self) -> &mut u8 {
|
|
LL | | &mut self.a
|
|
| | ----------- help: consider using: `&mut self.b`
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 10 previous errors
|
|
|